-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.py
More file actions
26 lines (20 loc) · 858 Bytes
/
config.py
File metadata and controls
26 lines (20 loc) · 858 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import os
CSRF_ENABLED = True
SECRET_KEY = 'n149ac91nqa9afgnqf7111076579'
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' },
{ 'name': 'Paypal', 'url': 'https://www.paypal.com/webapps/auth/server'}]
basedir = os.path.abspath(os.path.dirname(__file__))
SQLALCHEMY_DATABASE_URI = 'sqlite:///' + os.path.join(basedir, 'app.db')
SQLALCHEMY_MIGRATE_REPO = os.path.join(basedir, 'db_repository')
# mail server settings
MAIL_SERVER = 'localhost'
MAIL_PORT = 2345
MAIL_USERNAME = None
MAIL_PASSWORD = None
# administrator list
ADMINS = ['matt@localhost.com']