flaskblog / run.py
ashmeet007's picture
Deploying without binary files
66b1e34
raw
history blame contribute delete
112 Bytes
from project import create_app
app=create_app()
if __name__=="__main__":
app.run(
debug=True
)