Added some openid code.
This commit is contained in:
parent
904fe68d51
commit
a81cf3a67c
5 changed files with 196 additions and 13 deletions
11
websiteconfig.py
Normal file
11
websiteconfig.py
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
import os
|
||||
|
||||
_basedir = os.path.abspath(os.path.dirname(__file__))
|
||||
|
||||
DEBUG = False
|
||||
SECRET_KEY = 'testkey'
|
||||
DATABASE_URI = 'sqlite:///' + os.path.join(_basedir, 'flask-website.db')
|
||||
MAILINGLIST_PATH = os.path.join(_basedir, '_mailinglist')
|
||||
THREADS_PER_PAGE = 15
|
||||
|
||||
del os
|
||||
Loading…
Add table
Add a link
Reference in a new issue