first commit

This commit is contained in:
Frank John Begornia
2026-04-02 14:58:00 +08:00
commit c38837b552
9 changed files with 1394 additions and 0 deletions

22
docker-compose.local.yml Normal file
View File

@@ -0,0 +1,22 @@
services:
qr-code-api:
build:
context: .
dockerfile: Dockerfile
container_name: qr_code_api_local
restart: unless-stopped
environment:
- NODE_ENV=development
- PORT=3000
ports:
- "3000:3000"
command: npm run dev
volumes:
- ./:/app
- /app/node_modules
networks:
- qr-local
networks:
qr-local:
driver: bridge