-
Notifications
You must be signed in to change notification settings - Fork 3
/
.env.example
83 lines (59 loc) · 1.38 KB
/
.env.example
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
# The environment Craft is currently running in: 'dev', 'staging', 'production', etc.
CRAFT_ENVIRONMENT="staging"
#
# URLs & Paths
#
# The publicly accessible root URL for the primary site
# pointing to the ./web folder (with a trailing slash)
# eg: http://boilerplate.dev/
PRIMARY_SITE_URL=""
# Ngrok config
# NGROK_SITE_URL="https://easy-right-seagull.ngrok-free.app"
# PRIMARY_SITE_URL="${NGROK_SITE_URL}"
# The publicly accessible root URL for all static and
# user-uploaded assets pointing to the ./web folder
# (since ./web contains both ./web/media and ./web/build)
# eg: http://cdn.boilerplate.dev/
#
# [Optional] Defaults to PRIMARY_SITE_URL
CDN_BASE_URL=""
#
# Email Settings
#
CRAFT_FROM_EMAIL=""
CRAFT_FROM_NAME="${CRAFT_SITE_NAME}"
CRAFT_SMTP_HOST=""
CRAFT_SMTP_PORT=""
CRAFT_SMTP_USER=""
CRAFT_SMTP_PASSWORD=""
#
# Database Settings
#
CRAFT_DB_DATABASE=""
CRAFT_DB_USER=""
CRAFT_DB_PASSWORD=""
CRAFT_DB_TABLE_PREFIX=""
CRAFT_DB_DRIVER="mysql"
CRAFT_DB_SERVER="localhost"
CRAFT_DB_SCHEMA="public"
CRAFT_DB_PORT=""
#
# IDs/Keys used for third party integrations
#
GOOGLE_ANALYTICS_ID=""
#
# Licenses
#
CRAFT_LICENSE_IMAGER_X=""
#
# Shared across environments, to be created during
# the initial setup and not modified later
#
CRAFT_APP_ID=""
CRAFT_SITE_NAME=""
CRAFT_SECURITY_KEY=""
# --- End ---
#
# Auto-generated keys appear here
# eg: DDEV generated keys
#