Skip to content

Commit 37822d2

Browse files
committed
Add plugins related options
1 parent a18d653 commit 37822d2

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

.env.example

+8-1
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,11 @@ EMPTY_TRASH_DAYS=7
3939
# PHP configuration
4040
###############################
4141

42-
WP_MEMORY_LIMIT=64M
42+
WP_MEMORY_LIMIT=64M
43+
44+
###############################
45+
# Plugins configuration
46+
###############################
47+
48+
WPCF7_AUTOP=false
49+
FS_METHOD="direct"

wp-config.sample.php

+3
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,9 @@
9696
*/
9797

9898
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' ) );
99102

100103
/**
101104
* Define home and site url

0 commit comments

Comments
 (0)