Skip to content

Instantly share code, notes, and snippets.

@tanmayk
Created August 6, 2020 10:21
Show Gist options
  • Save tanmayk/ea3c09cfae3477cfa3fae6f028bdb0c8 to your computer and use it in GitHub Desktop.
Save tanmayk/ea3c09cfae3477cfa3fae6f028bdb0c8 to your computer and use it in GitHub Desktop.
<?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