Initial commit

This commit is contained in:
2026-03-16 23:06:42 +03:00
commit 86eee49c43
7 changed files with 405 additions and 0 deletions

16
docker-compose.yaml Executable file
View File

@@ -0,0 +1,16 @@
services:
qunatum-backend:
build:
context: .
environment:
PORT: 1656
ports:
- 1656:1656
depends_on:
- redis
restart: unless-stopped
redis:
image: "redis:alpine"
ports:
- "6379:6379"
restart: unless-stopped