-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.sample
More file actions
61 lines (59 loc) · 1.44 KB
/
.env.sample
File metadata and controls
61 lines (59 loc) · 1.44 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
# NOTE
# If env var is empty string, or value is defined in .ini file,
# these values will be ignored.
# -- development
## [global]
HOST="example.com"
PORT=5000
ENV="development"
DOMAIN="example.com"
NODE_ENV="development"
## [application]
TYPEKIT_ID=""
CACHE_ARTICLE="False"
## [session]
SESSION_TYPE="ext:memcached"
SESSION_SECRET="$ecret"
SESSION_KEY="example-development"
SESSION_URL="127.0.0.1:11211"
SESSION_USERNAME=""
SESSION_PASSWORD=""
SESSION_COOKIE_DOMAIN=".example.com"
## [wsgi]
WSGI_URL_SCHEME="http"
WSGI_AUTH_CREDENTIALS=""
## [integration]
SCROLLIRIS_PROJECT_ID="development"
SCROLLIRIS_WRITE_KEY="123"
SCROLLIRIS_READ_KEY="456"
## [storage]
BUCKET_HOST="cdn.example.com"
BUCKET_NAME="org.example.org"
BUCKET_PATH="/v1/static"
# -- test
## [global]
TEST_HOST="example.org"
TEST_ENV="test"
TEST_DOMAIN="example.org"
## [application]
TEST_TYPEKIT_ID=""
TEST_CACHE_ARTICLE="False"
## [session]
TEST_SESSION_TYPE="memory"
TEST_SESSION_SECRET="Qz5AiVSEqJokdjfAEbK4xwLEoodTtD3d9Xu5KZrUagISdL8vuBNh_3nBYdUtodb1"
TEST_SESSION_KEY="bregenz-session-test"
TEST_SESSION_URL=""
TEST_SESSION_USERNAME=""
TEST_SESSION_PASSWORD=""
TEST_SESSION_COOKIE_DOMAIN=".example.org"
# [wsgi]
TEST_WSGI_URL_SCHEME="http"
TEST_WSGI_AUTH_CREDENTIALS=""
## [integration]
TEST_SCROLLIRIS_PROJECT_ID="test"
TEST_SCROLLIRIS_WRITE_KEY="789"
TEST_SCROLLIRIS_READ_KEY="012"
## [bucket]
TEST_BUCKET_HOST="cdn.example.com"
TEST_BUCKET_NAME="org.example.org"
TEST_BUCKET_PATH="/v1/static"