aboutsummaryrefslogtreecommitdiff
path: root/share/templater/drupal-composer/files/settings.local.php
blob: a0fcb0746dd03affe29146eae349f39d1bbbdc93 (plain)
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<?php

// @codingStandardsIgnoreFile

/**
 * Database settings:
 *
 * The $databases array specifies the database connection or
 * connections that Drupal may use.  Drupal is able to connect
 * to multiple databases, including multiple types of databases,
 * during the same request.
 *
 * One example of the simplest connection array is shown below. To use the
 * sample settings, copy and uncomment the code below between the @code and
 * @endcode lines and paste it after the $databases declaration. You will need
 * to replace the database username and password and possibly the host and port
 * with the appropriate credentials for your database system.
 *
 * The next section describes how to customize the $databases array for more
 * specific needs.
 *
 * @code
 * $databases['default']['default'] = [
 *   'database' => 'databasename',
 *   'username' => 'sqlusername',
 *   'password' => 'sqlpassword',
 *   'host' => 'localhost',
 *   'port' => '3306',
 *   'driver' => 'mysql',
 *   'prefix' => '',
 *   'collation' => 'utf8mb4_general_ci',
 * ];
 * @endcode
 */
/**
$databases['default']['default'] = array (
  'database' => 'site',
  'username' => 'site',
  'password' => 'hackme',
  'prefix' => '',
  'host' => 'localhost',
  'port' => '3306',
  'namespace' => 'Drupal\\Core\\Database\\Driver\\mysql',
  'driver' => 'mysql',
);
 */

/**
 * Development.
 *
 * Disable caching during development
 * See https://www.drupal.org/node/2598914
 */
//$settings['container_yamls'][]                   = DRUPAL_ROOT . '/sites/development.services.yml';
$settings['container_yamls'][]                     = DRUPAL_ROOT . '/sites/default/services.dev.yml';
$config['system.performance']['css']['preprocess'] = FALSE;
$config['system.performance']['js']['preprocess']  = FALSE;
$settings['cache']['bins']['render']               = 'cache.backend.null';
$settings['cache']['bins']['dynamic_page_cache']   = 'cache.backend.null';