-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.sample
More file actions
82 lines (79 loc) · 2.17 KB
/
.env.sample
File metadata and controls
82 lines (79 loc) · 2.17 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
# -- deployment
PROJECT_ID=""
GOOGLE_CLOUD_PROJECT="sample-project-id"
# NOTE
# If env var is empty string, or value is defined in .ini file,
# these values will be ignored.
# -- development
## [global]
HOST="127.0.0.1"
PORT=5000
DOMAIN="example.org"
## [application]
DATABASE_CARDINAL_URL="postgresql://u$er:pa$$w0rd@localhost:5432/dbname"
DATABASE_ANALYSIS_URL="postgresql://u$er:pa$$w0rd@localhost:5432/dbname"
QUEUE_URL="redis://localhost:6379/dbnumber"
STORE_URL="redis://localhost:6379/dbnumber"
CACHE_URL="127.0.0.1:11211"
CSRF_TRUSTED_ORIGINS=".example.org,.example.com,"
## [mailer]
MAIL_HOST="smtp.example.org"
MAIL_PORT=465
MAIL_USERNAME="noreply@example.org"
MAIL_PASSWORD="pa$$w0rd"
MAIL_SENDER="Development <noreply@example.org>"
MAILER_TYPE="smtp"
MAILER_URL=""
MAILER_DOMAIN=""
MAILER_API_KEY=""
## [activation]
TOKEN_SECRET="$ecret"
## [authentication]
AUTH_SECRET="$ecret"
## [session]
SESSION_SECRET="$ecret"
SESSION_KEY="example-development"
SESSION_URL="127.0.0.1:11211"
SESSION_USERNAME=""
SESSION_PASSWORD=""
SESSION_COOKIE_DOMAIN=".example.org"
## [cdn]
BUCKET_HOST="cdn.example.com"
# echo "org.example" | md5sum
BUCKET_NAME="org.example"
BUCKET_PATH="/v1/static"
# -- test
## [global]
TEST_DOMAIN="example.org"
## [application]
TEST_DATABASE_CARDINAL_URL="postgresql://u$er:pa$$w0rd@localhost:5432/dbname"
TEST_DATABASE_ANALYSIS_URL="postgresql://u$er:pa$$w0rd@localhost:5432/dbname"
TEST_QUEUE_URL="redis://localhost:6379/dbnumber"
TEST_STORE_URL="redis://localhost:6379/dbnumber"
TEST_CACHE_URL=""
TEST_CSRF_TRUSTED_ORIGINS="example.org,localhost,"
## [mailer]
TEST_MAIL_HOST="smtp.example.org"
TEST_MAIL_PORT=465
TEST_MAIL_USERNAME="username"
TEST_MAIL_PASSWORD="password"
TEST_MAIL_SENDER="Test <noreply@example.org>"
TEST_MAILER_TYPE="smtp"
TEST_MAILER_URL=""
TEST_MAILER_DOMAIN=""
TEST_MAILER_API_KEY=""
## [activation]
TEST_TOKEN_SECRET="$ecret"
## [authentication]
TEST_AUTH_SECRET="$ecret"
## [session]
TEST_SESSION_SECRET="$ecret"
TEST_SESSION_KEY="example-test"
TEST_SESSION_URL=""
TEST_SESSION_USERNAME=""
TEST_SESSION_PASSWORD=""
TEST_SESSION_COOKIE_DOMAIN="example.org"
## [cdn]
TEST_BUCKET_HOST="cdn.example.com"
TEST_BUCKET_NAME="org.example"
TEST_BUCKET_PATH="/v1/static"