-
Notifications
You must be signed in to change notification settings - Fork 1
/
env.example
42 lines (32 loc) · 1.69 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
# This is an example file.
# Use a copy of this as a template for configuring a local `.env` file.
# When this webapp is run with foreman, variables defined in `.env` are
# loaded as environment variables.
# Django secret. Long and random, e.g.:
# http://www.howtogeek.com/howto/30184/10-ways-to-generate-a-random-password-from-the-command-line/
SECRET_KEY=''
# DEBUG is True by default. Set to 'False' to turn it off (e.g. in production).
# DEBUG='False'
# Get messages to output when running with Foreman. Solution from:
# https://elweb.co/how-to-fix-foremans-missing-output-issue-on-python-projects/
PYTHONUNBUFFERED=true
# Redis configuration, default port is 6379
REDIS_URL='redis://'
# Open Humans OAuth2 project settings.
# OH_ACTIVITY_PAGE='https://www.openhumans.org/activity/my-test-project/'
# OH_CLIENT_ID='SAIWMxkrSWOMBL9T2E49qDh4jrkOmGvdBTNOC4h0'
# OH_CLIENT_SECRET='hwDWN85ZUnz0PQcjreAIbV53AZFw9q4oioXolZUydDogrjq8eyrZOsF7s7fBSv3dLV68dNcKlo5CasajUtzjvZyfxGbU9uoHDlA7LKb6fQv7TvgVLGFT8IoVUspPIEyO'
OH_ACTIVITY_PAGE='https://www.openhumans.org/activity/your-project-name-should-be-here/'
OH_CLIENT_ID='client_id_here'
OH_CLIENT_SECRET='client_secret_here'
# Nokia health application variables
NOKIA_CLIENT_ID='nokia_key_here'
NOKIA_CONSUMER_SECRET='nokia_secret_here'
# Your app's base URL, used to construct the redirect URI.
# (Don't include a trailing slash!)
# Defaults to 127.0.0.1:5000, w/redirect URI 'http://127.0.0.1:5000/complete'
APP_BASE_URL='http://127.0.0.1:5000'
# Raven DSN for error tracking
RAVEN_DSN='https://b7b21f1dcffe4a2db13471c20d19c148:[email protected]/1088824'
# Settings module. Change this if you change the app name.
DJANGO_SETTINGS_MODULE='nokia.settings'