# -*- coding: utf8 -*- import os basedir = os.path.abspath(os.path.dirname(__file__)) 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/' }, { 'name': 'Flickr', 'url': 'http://www.flickr.com/' }, { 'name': 'MyOpenID', 'url': 'https://www.myopenid.com' }] SQLALCHEMY_DATABASE_URI = 'sqlite:///' + os.path.join(basedir, 'app.db') SQLALCHEMY_MIGRATE_REPO = os.path.join(basedir, 'db_repository') SQLALCHEMY_RECORD_QUERIES = True WHOOSH_BASE = os.path.join(basedir, 'search.db') # slow database query threshold (in seconds) DATABASE_QUERY_TIMEOUT = 0.5 # email server MAIL_SERVER = 'your.mailserver.com' MAIL_PORT = 25 MAIL_USE_TLS = False MAIL_USE_SSL = False MAIL_USERNAME = 'you' MAIL_PASSWORD = 'your-password' # available languages LANGUAGES = { 'en': 'English', 'es': 'EspaƱol' } # microsoft translation service MS_TRANSLATOR_CLIENT_ID = '' # enter your MS translator app id here MS_TRANSLATOR_CLIENT_SECRET = '' # enter your MS translator app secret here # administrator list ADMINS = ['you@example.com'] # pagination POSTS_PER_PAGE = 50 MAX_SEARCH_RESULTS = 50