Initial Commit. Split cloud service from the combined project

This commit is contained in:
2026-05-08 13:20:23 +03:00
commit 4cbf8986df
37 changed files with 4543 additions and 0 deletions

20
docker-compose.yml Normal file
View File

@@ -0,0 +1,20 @@
services:
cloud_backend:
build: ./cloud_backend
ports:
- "8001:8001"
restart: unless-stopped
env_file:
- ./cloud_backend/.env
volumes:
- ./data:/app/data
sysadmin_panel:
build: ./sysadmin_panel
ports:
- "5175:5175"
restart: unless-stopped
env_file:
- ./sysadmin_panel/.env
depends_on:
- cloud_backend