We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a18d653 commit 37822d2Copy full SHA for 37822d2
.env.example
@@ -39,4 +39,11 @@ EMPTY_TRASH_DAYS=7
39
# PHP configuration
40
###############################
41
42
-WP_MEMORY_LIMIT=64M
+WP_MEMORY_LIMIT=64M
43
+
44
+###############################
45
+# Plugins configuration
46
47
48
+WPCF7_AUTOP=false
49
+FS_METHOD="direct"
wp-config.sample.php
@@ -96,6 +96,9 @@
96
*/
97
98
define( 'WP_DEBUG', getenv( 'APP_ENV' ) === 'development' ? true : false );
99
+define( 'JETPACK_DEV_DEBUG', getenv( 'APP_ENV' ) === 'development' ? true : false );
100
+define( 'WPCF7_AUTOP', getenv( 'WPCF7_AUTOP' ) );
101
+define( 'FS_METHOD', getenv( 'FS_METHOD' ) );
102
103
/**
104
* Define home and site url
0 commit comments