Saving progress

This commit is contained in:
Luke Hagar
2025-08-12 10:35:39 -05:00
parent 70a10f9941
commit 11dbb4e357
104 changed files with 6376 additions and 4825 deletions

26
docker-compose.dev.yml Normal file
View File

@@ -0,0 +1,26 @@
version: '3.9'
services:
web:
build:
context: .
args:
SKIP_APP_BUILD: "1"
command: sh -lc "\
corepack enable && corepack prepare pnpm@9.12.3 --activate && \
pnpm install && \
pnpm prisma generate && \
pnpm prisma migrate deploy || true && \
pnpm dev --host 0.0.0.0 --port 5173"
volumes:
- ./:/app
- web_node_modules:/app/node_modules
env_file:
- .env
ports:
- "5173:5173"
volumes:
web_node_modules: