first commit

This commit is contained in:
2026-02-01 04:39:12 -05:00
commit bb35db384f
11 changed files with 819 additions and 0 deletions

29
docker-compose.yml Normal file
View File

@@ -0,0 +1,29 @@
version: '3.8'
services:
backend:
build: ./backend
container_name: ticky-backend
ports:
- "3222:3001"
environment:
- VIDEOS_DIR=/videos
volumes:
- ./videos:/videos:ro
restart: unless-stopped
frontend:
build: ./frontend
container_name: ticky-frontend
ports:
- "3111:3000"
depends_on:
- backend
environment:
- API_URL=http://backend:3001
volumes:
- ./frontend:/app
restart: unless-stopped
volumes:
videos: