forked from mozilla/goggles.mozilla.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenv.dist
executable file
·53 lines (42 loc) · 1.71 KB
/
env.dist
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
# Host information
export PORT=12416
export HOSTNAME="http://localhost:12416"
# Publication point
export HACKPUBURL="http://localhost:12416/"
# Webmaker SSO information
export LOGIN="http://localhost:3000"
export LOGINAPI="http://testuser:password@localhost:3000"
export AUDIENCE="http://localhost:7777"
# RESTful bleaching url
export BLEACH_ENDPOINT="http://localhost:5050"
# make API information
export MAKE_ENDPOINT="http://localhost:5000"
export MAKE_PRIVATEKEY="00000000-0000-0000-000000000000"
export MAKE_PUBLICKEY="00000000-0000-0000-000000000000"
# Local cookie secret
export SESSION_SECRET="I do enjoy a good cup of tea"
# Database settings
#
# For sqlite: _dialect and _storage needs to be set
# For mysql: _dialect, _user, _password, _host and _name needs to be set
#
export DB_DIALECT="sqlite"
export DB_STORAGE="goggles.sqlite"
# AWS-S3 information
export S3_BUCKET="org.webmadecontent.staging.goggles"
export S3_KEY=
export S3_SECRET=
# This value is only used for localhost testing with emulated S3
export MOX_PORT=12319
export S3_DOMAIN="http://localhost:12319"
export S3_EMULATION=false
# Optional google analytics settings - if used, they will inject
# the google analytics JS snippet with your information filled in.
export GA_ACCOUNT=
export GA_DOMAIN=
# domain to host user subdomains on. None means use raw S3 url
# If defined, must be in the format protocol://hostname[:port]
export USER_SUBDOMAIN=
# i18n Language Support
export LANG_MAPPINGS='{ "bn": "bn-IN", "en": "en-US", "es-CL": "es", "es-CO": "es", "es-ES": "es", "fr-CA": "fr", "fr-FR": "fr", "pt-BR": "pt", "pt-PT": "pt", "ru-RU": "ru", "th": "th-TH" }'
export SUPPORTED_LANGS='[ "bn-BD", "bn-IN", "en-CA", "en-US", "es", "fr", "pt", "ru", "th-TH" ]'