feat: scaffold holiday booking project

This commit is contained in:
2026-05-22 07:54:09 +00:00
commit abfc8dcf8e
39 changed files with 8941 additions and 0 deletions

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

@@ -0,0 +1,12 @@
services:
web:
command: npm run dev
volumes:
- .:/app
- /app/node_modules
environment:
NODE_ENV: development
NEXT_PUBLIC_SITE_URL: http://localhost:3000
ports:
- "${WEB_PORT:-3000}:3000"