forked from studio24/wordpress-multi-env-config
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwp-config.development.php
39 lines (32 loc) · 1 KB
/
wp-config.development.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
/**
* Development environment config settings
*
* Enter any WordPress config settings that are specific to this environment
* in this file.
*
* @package Studio 24 WordPress Multi-Environment Config
* @version 2.0.0
* @author Studio 24 Ltd <hello@studio24.net>
*/
// ** MySQL settings - You can get this info from your web host ** //
/** MySQL hostname */
define('DB_HOST', '');
/** The name of the database for WordPress */
define('DB_NAME', '');
/** MySQL database username */
define('DB_USER', '');
/** MySQL database password - set in wp-config.local.php */
/**
* For developers: WordPress debugging mode.
*
* Change this to true to enable the display of notices during development.
* It is strongly recommended that plugin and theme developers use WP_DEBUG
* in their development environments.
*
* For information on other constants that can be used for debugging,
* visit the Codex.
*
* @link https://codex.wordpress.org/Debugging_in_WordPress
*/
define('WP_DEBUG', true);