-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env
More file actions
221 lines (178 loc) · 8.19 KB
/
Copy path.env
File metadata and controls
221 lines (178 loc) · 8.19 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
##
# Project environment variables.
#
# This is a single location where variables control how the project stack
# operates. It should be the primary place for modifications. Avoid overriding
# values in scripts or configuration files to simplify future updates and
# centralize changes.
#
# A value must be scalar and cannot reference another variable.
# Do not enclose a value in double quotes unless it includes spaces.
#
# To apply any changes made to this file, run `docker-compose up cli -d` or
# `ahoy up cli`.
#
# To customize variables locally, copy `.env.local.example` to `.env.local`,
# and add your custom values there.
#
# @see https://www.vortextemplate.com/docs/development/variables
################################################################################
# GENERAL #
################################################################################
# Project name.
#
# Drives internal naming within the codebase.
# Does not affect the names of containers and development URL - those depend on
# the project directory and can be overridden with $COMPOSE_PROJECT_NAME.
VORTEX_PROJECT=website
# Name of the web root directory containing a Drupal codebase.
WEBROOT=web
# The timezone used within the containers.
TZ=Australia/Melbourne
################################################################################
# DRUPAL #
################################################################################
# Drupal profile name.
DRUPAL_PROFILE=standard
# Drupal configuration directory.
#
# Path from the web root directory to the configuration directory.
# If not set, the default location is inside a randomly-named directory in the
# public files path.
DRUPAL_CONFIG_PATH=../config/default
# Trusted host patterns.
#
# Comma-separated list of domains for trusted host patterns. These domains will
# be added to the trusted host patterns alongside any other routes defined by
# the hosting provider.
DRUPAL_TRUSTED_HOSTS=drevops.com,www.drevops.com
# Drupal theme name.
DRUPAL_THEME=drevops
# Drupal maintenance theme name.
DRUPAL_MAINTENANCE_THEME=drevops
# Stage file proxy origin.
#
# If using Shield, the HTTP authentication credentials will be automatically
# added to the origin URL.
DRUPAL_STAGE_FILE_PROXY_ORIGIN=https://www.drevops.com
# Shield message.
DRUPAL_SHIELD_PRINT="Restricted access."
# Enable Redis integration.
# See settings.redis.php for details.
DRUPAL_REDIS_ENABLED=1
# Enable ClamAV integration.
DRUPAL_CLAMAV_ENABLED=1
# ClamAV mode.
#
# Run ClamAV in either daemon mode by setting it to 0 (or 'daemon') or in
# executable mode by setting it to 1.
DRUPAL_CLAMAV_MODE=daemon
################################################################################
# PROVISION #
################################################################################
# By "provision", we mean the process of initialising the database (from dump
# or fresh install from profile), running updates, appying configuration
# changes, clearing caches and performing other tasks that prepare the site for
# use.
# @see https://www.vortextemplate.com/docs/drupal/provision
# Set to 'profile' to install a site from profile instead of the database dump.
VORTEX_PROVISION_TYPE=database
# Overwrite a database if it exists.
#
# Usually set to 0 in deployed environments and can be temporary set to 1 for
# a specific deployment.
# Set this to 1 in .env.local to override when developing locally.
VORTEX_PROVISION_OVERRIDE_DB=0
# Fallback to profile installation if the database dump is not available.
#
# When enabled and the provision type is set to "database", the site will be
# installed from the profile if the database dump file or container image
# is not available.
VORTEX_PROVISION_FALLBACK_TO_PROFILE=0
# Verify that configuration was not changed by database updates.
# If enabled and config files are present, the provision will fail if
# database update hooks modify active configuration, preventing
# drush config:import from silently overwriting those changes.
VORTEX_PROVISION_VERIFY_CONFIG_UNCHANGED_AFTER_UPDATE=0
# Skip database sanitization.
#
# Database sanitization is enabled by default in all non-production
# environments and is always skipped in the production environment.
# @see https://www.vortextemplate.com/docs/drupal/provision#database-sanitization
VORTEX_PROVISION_SANITIZE_DB_SKIP=1
# Sanitization email pattern.
#
# Applied if database sanitization is enabled.
# @see https://www.vortextemplate.com/docs/drupal/provision#database-sanitization
VORTEX_PROVISION_SANITIZE_DB_EMAIL=user_%uid@drevops.com
# Put the site into a maintenance mode during site provisioning.
VORTEX_PROVISION_USE_MAINTENANCE_MODE=1
################################################################################
# HOSTING #
################################################################################
# Lagoon project name. May be different from $VORTEX_PROJECT.
#
# Update drush/sites/lagoon.site.yml if you update this value.
LAGOON_PROJECT=drevops-website
# Dedicated branch to identify the production environment.
VORTEX_LAGOON_PRODUCTION_BRANCH=main
################################################################################
# DATABASE SOURCE #
################################################################################
# Database service runs a single database within a container.
# See settings.php for database credentials or run `ahoy drush sql:connect`.
# Database can be imported from a *file dump* into an empty database started
# from the database default container image or can *exist* in a pre-built
# container image.
# Defaults to importing from a file.
# Database dump directory.
#
# The directory is used to store the database dump files for import and export.
VORTEX_DB_DIR=./.data
# Database dump file name.
#
# The file is used to import the database into an empty database container.
VORTEX_DB_FILE=db.sql
# Database download source.
VORTEX_DOWNLOAD_DB_SOURCE=lagoon
# Environment to download the database from.
#
# Applies to hosting environments.
# Note that depending on the hosting provider, this variable may represent
# a branch name or an environment name.
VORTEX_DOWNLOAD_DB_ENVIRONMENT=main
################################################################################
# RELEASE VERSIONING #
################################################################################
# Versioning scheme used for releases.
#
# Can be one of: calver, semver, other
# @see https://www.vortextemplate.com/docs/releasing
VORTEX_RELEASE_VERSION_SCHEME=calver
################################################################################
# DEPLOYMENT #
################################################################################
# Deployment occurs when tests pass in the CI environment.
# @see https://www.vortextemplate.com/docs/deployment
VORTEX_DEPLOY_TYPES=lagoon
################################################################################
# NOTIFICATIONS #
################################################################################
# Notificaions are sent accross multiple channels before and after deployment.
# @see https://www.vortextemplate.com/docs/deployment/notifications
# The channels of the notifications.
#
# A combination of comma-separated values: email,slack,newrelic,github,jira,webhook,diffy
VORTEX_NOTIFY_CHANNELS=email,github,slack,diffy
# An email address to send notifications from.
#
# Applies to email notifications.
VORTEX_NOTIFY_EMAIL_FROM=webmaster@drevops.com
# Email address(es) to send notifications to.
#
# Applies to email notifications.
#
# Multiple names can be specified as a comma-separated list of email addresses
# with optional names in the format "email|name".
# Example: "to1@example.com|Jane Doe, to2@example.com|John Doe"
VORTEX_NOTIFY_EMAIL_RECIPIENTS="webmaster@drevops.com|Webmaster"