2012-12-16 08:29:49 +00:00
|
|
|
import os
|
|
|
|
basedir = os.path.abspath(os.path.dirname(__file__))
|
|
|
|
|
2012-12-16 08:28:52 +00:00
|
|
|
CSRF_ENABLED = True
|
|
|
|
SECRET_KEY = 'you-will-never-guess'
|
|
|
|
|
|
|
|
OPENID_PROVIDERS = [
|
|
|
|
{ 'name': 'Google', 'url': 'https://www.google.com/accounts/o8/id' },
|
|
|
|
{ 'name': 'Yahoo', 'url': 'https://me.yahoo.com' },
|
|
|
|
{ 'name': 'AOL', 'url': 'http://openid.aol.com/<username>' },
|
|
|
|
{ 'name': 'Flickr', 'url': 'http://www.flickr.com/<username>' },
|
2012-12-16 08:29:49 +00:00
|
|
|
{ 'name': 'MyOpenID', 'url': 'https://www.myopenid.com' }]
|
|
|
|
|
|
|
|
SQLALCHEMY_DATABASE_URI = 'sqlite:///' + os.path.join(basedir, 'app.db')
|
2012-12-16 08:32:38 +00:00
|
|
|
SQLALCHEMY_MIGRATE_REPO = os.path.join(basedir, 'db_repository')
|
2012-12-16 08:35:16 +00:00
|
|
|
WHOOSH_BASE = os.path.join(basedir, 'search.db')
|
2012-12-16 08:32:38 +00:00
|
|
|
|
2012-12-16 08:36:04 +00:00
|
|
|
# email server
|
|
|
|
MAIL_SERVER = 'your.mailserver.com'
|
2012-12-16 08:32:38 +00:00
|
|
|
MAIL_PORT = 25
|
2012-12-16 08:36:04 +00:00
|
|
|
MAIL_USE_TLS = False
|
|
|
|
MAIL_USE_SSL = False
|
|
|
|
MAIL_USERNAME = 'you'
|
|
|
|
MAIL_PASSWORD = 'your-password'
|
2012-12-16 08:32:38 +00:00
|
|
|
|
|
|
|
# administrator list
|
|
|
|
ADMINS = ['you@example.com']
|
2012-12-16 08:34:46 +00:00
|
|
|
|
|
|
|
# pagination
|
|
|
|
POSTS_PER_PAGE = 3
|
2012-12-16 08:35:16 +00:00
|
|
|
MAX_SEARCH_RESULTS = 50
|