2
0
mirror of https://github.com/codl/forget synced 2024-12-13 17:08:12 +01:00
forget-cancellare-vecchi-toot/config.example.py
codl 146dd263c9
unify redis config (closes #8)
also, not sure why brotli was being initialised in routes not in app
2017-09-07 01:10:02 +02:00

48 lines
934 B
Python

"""
this is an example config file for Forget
copy this file to config.py before editing
"""
"""
DATABASE URI
determines where to connect to the database
see http://docs.sqlalchemy.org/en/latest/core/engines.html#database-urls for syntax
only postgresql with psycopg2 driver is officially supported
"""
# SQLALCHEMY_DATABASE_URI='postgresql+psycopg2:///forget'
"""
REDIS URI
see https://redis-py.readthedocs.io/en/latest/#redis.ConnectionPool.from_url
for syntax reference
"""
# REDIS_URI='redis://'
"""
TWITTER CREDENTIALS
get these at apps.twitter.com
blah
"""
# TWITTER_CONSUMER_KEY='vdsvdsvds'
# TWITTER_CONSUMER_SECRET='hjklhjklhjkl'
"""
this will be necessary so we can tell twitter where to redirect
"""
# SERVER_NAME="localhost:5000"
# HTTPS=True
# SENTRY_DSN='https://foo:bar@sentry.io/69420'
"""
you can also use any config variable that flask expects here, such as
"""
# SESSION_COOKIE_SECURE=True
# DEBUG=True