Initial commit

This commit is contained in:
Jage9
2026-02-20 08:16:43 -05:00
commit b246c9a7fd
53 changed files with 9538 additions and 0 deletions

19
server/pyproject.toml Normal file
View File

@@ -0,0 +1,19 @@
[project]
name = "chat-grid-server"
version = "0.1.0"
description = "Chat Grid signaling server"
requires-python = ">=3.11"
dependencies = [
"pydantic>=2.10.4",
"websockets>=15.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.3.4",
"pytest-asyncio>=0.25.2",
]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]