clareia / run.py
emanoelopes's picture
flask
d42e360
raw
history blame
247 Bytes
from app.app import app, db
import os
if __name__ == '__main__':
if not os.path.exists(app.config['UPLOAD_FOLDER']):
os.makedirs(app.config['UPLOAD_FOLDER'])
with app.app_context():
db.create_all()
app.run(debug=True)