Files
Alex e07df29ab9
Run python tests with pytest / Run tests and count coverage (3.10) (push) Has been cancelled
Run python tests with pytest / Run tests and count coverage (3.11) (push) Has been cancelled
Run python tests with pytest / Run tests and count coverage (3.9) (push) Has been cancelled
Update FLASK_DEBUG_MODE setting to use value from settings module
2024-04-08 13:27:43 +01:00

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)