notifier/server.py
Untone 15fd6ec765
Some checks failed
deploy / deploy (push) Failing after 1m27s
check-deploy
2024-02-03 18:36:33 +03:00

18 lines
381 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,
workers=2,
threads=2,
websockets=False,
interface=Interfaces.ASGI,
)
granian_instance.serve()