lexiconauts_ai / run.py
Zenoharsh01's picture
intial commit
b9b0b47
raw
history blame contribute delete
109 Bytes
from app import create_app
app = create_app()
if __name__ == '__main__':
app.run(debug=True, port=5000)