~sffjunkie/+junk/torque

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import os
basedir = os.path.abspath(os.path.dirname(__file__))

DEBUG=False
CSRF_ENABLED = True
SECRET_KEY = '?\xbf,\xb4\x8d\xa3"<\x9c\xb0@\x0f5\xab,w\xee\x8d$0\x13\x8b83'

SQLALCHEMY_DATABASE_URI = 'sqlite:///' + os.path.join(basedir, 'torque.db')

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>' },
    { 'name': 'MyOpenID', 'url': 'https://www.myopenid.com' }
]