forked from OpenHumans/open-humans
-
Notifications
You must be signed in to change notification settings - Fork 1
/
env.example
61 lines (47 loc) · 1.91 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
# This is an example file showing what your local ".env" file should contain.
# (Note the leading period.)
# A long, random string used for cryptographic functions within Django
#SECRET_KEY="3efd62ee86d4a141c3e671d86ba1579f934cf04d"
SECRET_KEY=""
# The PostgreSQL database URL.
# e.g. for local dev with a database 'mydb', user 'jdoe', password 'pa55wd':
DATABASE_URL="postgres://jdoe:pa55wd@localhost/mydb"
# The URL for the site running open-humans-data-processing, our Flask app for
# data retrieval. It should include protocol, domain and port.
#DATA_PROCESSING_URL="https://127.0.0.1:5000".
DATA_PROCESSING_URL=""
# Amazon Web Services settings
# We use keys for deployment-specific IAM users to manage permissions.
AWS_ACCESS_KEY_ID="AKIAIQ5ZSWPCCUXVP6WQ"
AWS_SECRET_ACCESS_KEY="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"
AWS_S3_STORAGE_BUCKET_NAME="open-humans-testing"
# Settings for BrowserStack. Some tests will fail if this isn't set correctly.
# BROWSERSTACK_KEY=""
# BROWSERSTACK_EXECUTOR=""
# Set this to true if you want to skip browserstack tests.
NOBROWSER="true"
# Mailchimp settings
# The API key from your account page, under 'Extras', 'API Keys'
MAILCHIMP_API_KEY=""
# The ID of the email list, from the Mailchimp.lists.list() command
MAILCHIMP_NEWSLETTER_LIST=""
# The password used for mailgun integration
MAILGUN_PASSWORD=""
# Enable debugging for local development (required to stop redirecting http://
# to https:// too)
DEBUG="true"
# Log all Django messages to stdout
LOG_EVERYTHING="false"
# Disable memcached
DISABLE_CACHING="false"
# The port the web server should listen on
#PORT=8000
PORT=
# Recaptcha keys from https://www.google.com/recaptcha/admin#list
RECAPTCHA_PUBLIC_KEY=""
RECAPTCHA_PRIVATE_KEY=""
# The SSO secret from
# http://forum.openhumans.org/admin/site_settings/category/login
DISCOURSE_SSO_SECRET=""
# A key used to communicate with data-processing; must be set in both sites
PRE_SHARED_KEY=""