Project / run.py
Swathi6's picture
Create run.py
6587227 verified
Raw
History Blame Contribute Delete
99 Bytes
from app import create_app
app = create_app()
if __name__ == '__main__':
app.run(debug=True)