Add complete project files

This commit is contained in:
2025-08-26 08:59:13 +02:00
parent 2756116b75
commit 1da752da34
69 changed files with 11933 additions and 0 deletions

39
docker-compose.yml Executable file
View File

@@ -0,0 +1,39 @@
version: '3.8'
services:
# Development service
app-dev:
build:
context: .
dockerfile: Dockerfile
ports:
- "3000:3000"
volumes:
- .:/app
- /app/node_modules
- /app/.next
environment:
- NODE_ENV=development
command: npm run dev
profiles:
- dev
# Production service
app-prod:
build:
context: .
dockerfile: Dockerfile
ports:
- "3000:3000"
environment:
- NODE_ENV=production
- SITE_URL=${SITE_URL:-https://hamtonbrown.com}
- CONTACT_TO_EMAIL=${CONTACT_TO_EMAIL:-contact@hamtonbrown.com}
- RESEND_API_KEY=${RESEND_API_KEY}
restart: unless-stopped
profiles:
- prod
networks:
default:
name: hamtonbrown-network