-
Notifications
You must be signed in to change notification settings - Fork 47
/
docker.env
38 lines (27 loc) · 1.27 KB
/
docker.env
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
DEV_EMAIL=
SENDGRID_API_KEY=
# Works for localhost but get your own here: https://www.google.com/recaptcha/admin
RECAPTCHA_SITE_KEY = "6Lfm2lUUAAAAAGxPhP1ZIeFM_F2Du0HSjIP2CEPH"
RECAPTCHA_SECRET_KEY = "6Lfm2lUUAAAAAMmJg_mXa_x-x1DDKSCLDBo8hqdM"
# You probably won't want to modify anything below this line if you are just
# wanting to get a development environment running. Everything is preconfigured
# to work in the docker-compose environment.
# Flask settings
DEBUG=True
HOST=localhost
HTTPS=False
FLASK_SECRET_KEY=secret
TEMPLATE_ROOT=/app/templates
STATIC_ROOT=/app/static
# Celery settings
CELERY_DEBUG=False
# Database run by postgresql container
DATABASE_URL=postgresql://origin:origin@postgres-website/origin_website
# Redis instance run by redis container, used by Celery
REDIS_URL=redis://redis:6379
APK_URL=https://storage.googleapis.com/android-artifacts/origin-marketplace-0.17.6.apk
CHROME_EXTENSION_URL=https://chrome.google.com/webstore/detail/origin-browser-extension/pplcajdkcpaefgdadbbfchogccbieoae
FIREFOX_EXTENSION_URL=https://addons.mozilla.org/en-US/firefox/addon/origin-browser-extension/
STAKE_URL = "https://ousd.com/stake"
# Uncomment this when you are running ousd-analytics locally
# STAKING_STATS_URL="http://host.docker.internal:8000/api/v1/staking_stats"