chore: docker compose dev
TS Lint / Oxlint (push) Successful in 40s
TS Lint / TypeScript (push) Successful in 46s
TS Lint / ESLint (push) Successful in 46s

This commit is contained in:
2026-06-30 23:20:58 +02:00
parent c92f337006
commit deba8a73f9
4 changed files with 70 additions and 7 deletions
+27
View File
@@ -0,0 +1,27 @@
networks:
backend:
services:
app:
image: astral/uv:python3.14-alpine
volumes:
- .:/app
working_dir: /app
environment:
- APP_ENV=dev
- PORT=5000
- BIND=0.0.0.0
command: uv run tout-doux --debug
networks:
- backend
vite:
image: oven/bun:latest
volumes:
- .:/app
working_dir: /app
command: bun run dev
ports:
- "5173:5173"
networks:
- backend