-
Notifications
You must be signed in to change notification settings - Fork 2
/
env.example
31 lines (24 loc) · 1.19 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
# This is an example file.
# Use a copy of this as a template for configuring a local `.env` file.
# When this application is run locally, 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='secret_key_here'
# DEBUG is True by default. Un-comment the following line to set to 'False' to turn it off (e.g. in production).
# DEBUG='False'
# Redis configuration, default port is 6379
REDIS_URL='redis://localhost:6379/1'
# Open Humans OAuth2 project settings.
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'
# 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'
# Settings module. Change this if you change the app name.
DJANGO_SETTINGS_MODULE='demotemplate.settings'
TWITTER_CLIENT_ID='foo'
TWITTER_CLIENT_SECRET='bar'
TWITTER_REDIRECT_URI='http://127.0.0.1:5000/source_complete'