DocsGPT/application/wsgi.py
Anton Larin 98a97f34f5 fix packaging and imports and introduce tests with pytest.
still issues with celery worker.
2023-08-14 18:20:25 +02:00

5 lines
95 B
Python

from application.app import app
if __name__ == "__main__":
app.run(debug=True, port=7091)