Skip to content

Commit

Permalink
Add plugins related options
Browse files Browse the repository at this point in the history
  • Loading branch information
Alecaddd committed Feb 15, 2019
1 parent a18d653 commit 37822d2
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,11 @@ EMPTY_TRASH_DAYS=7
# PHP configuration
###############################

WP_MEMORY_LIMIT=64M
WP_MEMORY_LIMIT=64M

###############################
# Plugins configuration
###############################

WPCF7_AUTOP=false
FS_METHOD="direct"
3 changes: 3 additions & 0 deletions wp-config.sample.php
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,9 @@
*/

define( 'WP_DEBUG', getenv( 'APP_ENV' ) === 'development' ? true : false );
define( 'JETPACK_DEV_DEBUG', getenv( 'APP_ENV' ) === 'development' ? true : false );
define( 'WPCF7_AUTOP', getenv( 'WPCF7_AUTOP' ) );
define( 'FS_METHOD', getenv( 'FS_METHOD' ) );

/**
* Define home and site url
Expand Down

0 comments on commit 37822d2

Please sign in to comment.