forget-cancellare-vecchi-toot/config.example.py

48 lines
934 B
Python
Raw Normal View History

2017-07-26 11:11:54 +02:00
"""
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
"""
2017-08-11 19:13:37 +02:00
# SQLALCHEMY_DATABASE_URI='postgresql+psycopg2:///forget'
2017-07-26 11:11:54 +02:00
"""
REDIS URI
see https://redis-py.readthedocs.io/en/latest/#redis.ConnectionPool.from_url
for syntax reference
"""
# REDIS_URI='redis://'
2017-07-26 11:11:54 +02:00
"""
TWITTER CREDENTIALS
get these at apps.twitter.com
blah
"""
2017-08-11 19:13:37 +02:00
# TWITTER_CONSUMER_KEY='vdsvdsvds'
# TWITTER_CONSUMER_SECRET='hjklhjklhjkl'
2017-07-26 11:11:54 +02:00
2017-07-27 00:35:53 +02:00
"""
this will be necessary so we can tell twitter where to redirect
2017-07-27 00:35:53 +02:00
"""
2017-08-11 19:13:37 +02:00
# SERVER_NAME="localhost:5000"
2017-07-27 00:35:53 +02:00
2017-07-27 20:20:59 +02:00
2017-08-11 19:13:37 +02:00
# HTTPS=True
2017-07-30 14:08:37 +02:00
2017-08-07 13:29:31 +02:00
# SENTRY_DSN='https://foo:bar@sentry.io/69420'
2017-07-26 11:11:54 +02:00
"""
you can also use any config variable that flask expects here, such as
"""
# SESSION_COOKIE_SECURE=True
# DEBUG=True