Files
snake-python/asgi.py
T
daniel156161 3d7f92e20f
Build and Push Docker Container / build-and-push (push) Successful in 48s
use hypercorn in production without uv bload
2026-04-03 14:58:41 +02:00

17 lines
504 B
Python

from server.Server import Server
import os
server = Server(
data_path=os.path.dirname(__file__),
snake_type=os.environ.get("SNAKE", "BestBattleSnake"),
storage_type=os.environ.get("STORAGE", "LocalStorage"),
store_game_when_win_and_moves_are_bigger_as=int(os.environ.get("STORE_IF_WIN_AND_MOVES_ARE_BIGGER_AS", 10)),
debug=os.environ.get("DEBUG_SERVER", False),
check_tls_security=False,
)
if os.environ.get("STORE_GAME_HISTORY", None):
server.enable_store_game_state()
app = server.app