Add database schema

This commit is contained in:
gpt-engineer-app[bot]
2025-10-21 04:23:22 +00:00
parent 0570846b00
commit f9feb67425
15 changed files with 1620 additions and 4 deletions

19
docker-compose.yml Normal file
View File

@@ -0,0 +1,19 @@
version: '3.8'
services:
pricetracker:
build:
context: .
dockerfile: Dockerfile
ports:
- "8080:80"
environment:
- NODE_ENV=production
restart: unless-stopped
container_name: pricetracker
networks:
- pricetracker-network
networks:
pricetracker-network:
driver: bridge