Initial commit

This commit is contained in:
rubenwardy
2018-03-18 17:43:30 +00:00
commit 366a2302d0
14 changed files with 796 additions and 0 deletions

7
app/__init__.py Normal file
View File

@@ -0,0 +1,7 @@
from flask import *
from flask_user import *
app = Flask(__name__)
app.config.from_pyfile('../config.cfg')
import models, views