-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathenv.example
More file actions
28 lines (28 loc) · 917 Bytes
/
Copy pathenv.example
File metadata and controls
28 lines (28 loc) · 917 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
#
# Copy and rename this file to .env at root of this project.
#
# A common use case is to supply database creds via the environment. Edit settings.php
# like so:
#
# $databases['default']['default'] = [
# 'database' => getenv('DRUPAL_DATABASE_NAME'),
# 'driver' => 'mysql',
# 'host' => getenv('DRUPAL_DATABASE_HOST'),
# 'namespace' => 'Drupal\\Core\\Database\\Driver\\mysql',
# 'password' => getenv('DRUPAL_DATABASE_PASSWORD'),
# 'port' => getenv('DRUPAL_DATABASE_PORT'),
# 'prefix' => '',
# 'username' => getenv('DRUPAL_DATABASE_USERNAME'),
# ];
#
# Uncomment and populate as needed.
# Docksal default
DRUPAL_DATABASE_HOST='db'
DRUPAL_DATABASE_PORT='3306'
DRUPAL_DATABASE_NAME='drupal'
DRUPAL_DATABASE_USERNAME='drupal'
DRUPAL_DATABASE_PASSWORD='drupal'
DRUPAL_HASH_SALT='set-a-random-string-here'
GEOREPORT_API_KEY=''
JURISDICTION_ID=''
MARKASPOT_UI_BASE_IMAGE='markaspot/markaspot-ui-base:v2.0.0'