7 lines
204 B
Python
7 lines
204 B
Python
"""Gunicorn-Einstiegspunkt für den Web-Dienst."""
|
|
from app.web import app # noqa: F401
|
|
|
|
if __name__ == "__main__":
|
|
from app import config
|
|
app.run(host="127.0.0.1", port=config.PORT, debug=True)
|