~sffjunkie/+junk/torque

« back to all changes in this revision

Viewing changes to torque_web/default_config.py

  • Committer: Simon Kennedy
  • Date: 2013-08-18 14:48:52 UTC
  • Revision ID: code@sffjunkie.co.uk-20130818144852-fhql0vh06d2o4auc
Updates

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
SECRET_KEY = '?\xbf,\xb4\x8d\xa3"<\x9c\xb0@\x0f5\xab,w\xee\x8d$0\x13\x8b83'
7
7
 
8
8
SQLALCHEMY_DATABASE_URI = 'sqlite:///' + os.path.join(basedir, 'torque.db')
 
9
 
 
10
OPENID_PROVIDERS = [
 
11
    { 'name': 'Google', 'url': 'https://www.google.com/accounts/o8/id' },
 
12
    { 'name': 'Yahoo', 'url': 'https://me.yahoo.com' },
 
13
    { 'name': 'AOL', 'url': 'http://openid.aol.com/<username>' },
 
14
    { 'name': 'Flickr', 'url': 'http://www.flickr.com/<username>' },
 
15
    { 'name': 'MyOpenID', 'url': 'https://www.myopenid.com' }
 
16
]
 
17