first commit

This commit is contained in:
Beyhan Oğur
2026-04-26 22:12:36 +03:00
commit e881f38e4e
278 changed files with 24095 additions and 0 deletions

27
docker-compose.yml Normal file
View File

@@ -0,0 +1,27 @@
services:
web-dev:
build:
context: .
target: dev
ports:
- "3000:3000"
env_file:
- .env.local
volumes:
- .:/app
- web_node_modules:/app/node_modules
- web_next_cache:/app/.next
web-prod:
build:
context: .
target: runner
ports:
- "3000:3000"
env_file:
- .env.local
volumes:
web_node_modules:
web_next_cache: