core/server.py
Untone 22466e65e2
Some checks failed
Deploy to core / deploy (push) Failing after 8s
4threads-1worker
2024-02-19 11:12:00 +03:00

17 lines
362 B
Python

from granian.constants import Interfaces
from granian.server import Granian
if __name__ == '__main__':
print('[server] started')
granian_instance = Granian(
'main:app',
address='0.0.0.0', # noqa S104
port=8000,
threads=4,
websockets=False,
interface=Interfaces.ASGI,
)
granian_instance.serve()