Added some openid code.

This commit is contained in:
Armin Ronacher 2010-05-02 19:07:42 +02:00
parent 904fe68d51
commit a81cf3a67c
5 changed files with 196 additions and 13 deletions

11
websiteconfig.py Normal file
View 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