adding all previous files for init commit

This commit is contained in:
Xevion
2019-06-29 16:31:30 -05:00
parent 6ed1597389
commit b6de8eef52
14 changed files with 7248 additions and 0 deletions

6
wsgi.py Normal file
View File

@@ -0,0 +1,6 @@
from app import app, db
from app.models import User, Post
@app.shell_context_processor
def make_shell_context():
return {'db' : db, 'User' : User, 'Post' : Post}