Created
August 6, 2020 10:21
-
-
Save tanmayk/ea3c09cfae3477cfa3fae6f028bdb0c8 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* @codingStandardsIgnoreFile | |
*/ | |
/** | |
* Database configurations. | |
*/ | |
$databases['default']['default'] = array ( | |
'database' => 'drupal', | |
'username' => 'root', | |
'password' => 'root', | |
'prefix' => '', | |
'host' => '127.0.0.1', | |
'port' => '3306', | |
'namespace' => 'Drupal\\Core\\Database\\Driver\\mysql', | |
'driver' => 'mysql', | |
); | |
/** | |
* Configuration sync directory. | |
*/ | |
$settings['config_sync_directory'] = '../config/sync'; | |
/** | |
* Salt for one-time login links, cancel links, form tokens, etc. | |
*/ | |
$settings['hash_salt'] = 'DRUPAL_SITE_HASH_SALT'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment