-
Notifications
You must be signed in to change notification settings - Fork 13
/
env-sample.php
38 lines (30 loc) · 922 Bytes
/
env-sample.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?php
/**
* WordPress
*/
define( 'DB_NAME', 'nycga' );
define( 'DB_USER', 'root' );
define( 'DB_PASSWORD', 'root' );
define( 'DB_HOST', 'localhost' );
/**
* bbPress (BP version)
*
* These should be the same as your WP info
*/
define( 'BBDB_NAME', 'nycga' );
define( 'BBDB_USER', 'root' );
define( 'BBDB_PASSWORD', 'root' );
define( 'BBDB_HOST', 'localhost' );
/**
* Other environment specific constants
*/
// Text for "ENVIRONMENT" Tab ("LOCAL INSTALL", "DEV ENVIRONMENT", "STAGING", etc)
define( 'ENV_TAB', 'DEV ENVIRONMENT' );
// Only change this on production sites!
define( 'IS_LOCAL_ENV', true );
// Many installed plugins will flood you with errors, so use this only when necessary for debugging
define( 'WP_DEBUG', false );
// Unless you walk through the cache setup on your local installation, you'll want to keep this shut off
define( 'WP_CACHE', false );
define( 'WP_MEMORY_LIMIT', '128M' );
?>