first commit

This commit is contained in:
2026-01-13 22:55:46 +01:00
parent 3a3b0b046d
commit 2faf2dd8dc
31 changed files with 8490 additions and 0 deletions

18
docker-compose.yml Normal file
View File

@@ -0,0 +1,18 @@
version: '3.8'
services:
server:
build: ./server
ports:
- "3000:3000"
volumes:
- ./data:/app/data
environment:
- PORT=3000
client:
build: ./client
ports:
- "8080:80"
depends_on:
- server