mirror of
https://github.com/arc53/DocsGPT
synced 2024-11-09 19:10:53 +00:00
6 lines
163 B
Python
6 lines
163 B
Python
from application.app import app
|
|
from application.core.settings import settings
|
|
|
|
if __name__ == "__main__":
|
|
app.run(debug=settings.FLASK_DEBUG_MODE, port=7091)
|