1
0
Fork 0
This repository has been archived on 2024-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
cyberplanificateur/cyberplanificateur.py

10 lines
292 B
Python

from app import app
from app.models import User, TwitterAPI, TrelloAPI
@app.shell_context_processor
def make_shell_context():
return {"db": db, "User": User, "TwitterAPI": TwitterAPI, "TrelloAPI": TrelloAPI}
if __name__ == "__main__":
app.run(debug=True, port=5000, host="0.0.0.0")