-
Notifications
You must be signed in to change notification settings - Fork 95
Expand file tree
/
Copy pathwp-config.development.php
More file actions
37 lines (30 loc) · 953 Bytes
/
wp-config.development.php
File metadata and controls
37 lines (30 loc) · 953 Bytes
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
<?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
*/
// ** 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);