mirror of
https://github.com/arc53/DocsGPT.git
synced 2025-11-29 00:23:17 +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)
|