ai-trading-app / app.py
Aziz30's picture
Update app.py
fc7ec0e verified
raw
history blame contribute delete
276 Bytes
import sys
import os
# chemin vers Interface Graphique
path = os.path.join(os.path.dirname(__file__), "Interface Graphique")
sys.path.append(path)
from Interface_Graphique.app import app
server = app.server
if __name__ == "__main__":
app.run(host="0.0.0.0", port=7860)