Initial commit of Balout Pastry NestJS API.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
Alireza Hassani
2026-08-02 17:21:34 +03:30
co-authored by Cursor
commit f40075fd5e
84 changed files with 15435 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
services:
postgres:
image: postgres:16-alpine
container_name: balout-postgres
restart: unless-stopped
ports:
- "127.0.0.1:${POSTGRES_PORT:-5434}:5432"
environment:
POSTGRES_USER: ${POSTGRES_USER:-balout}
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-balout_secret}
POSTGRES_DB: ${POSTGRES_DB:-balout_pastry}
volumes:
- balout_postgres_data:/var/lib/postgresql/data
healthcheck:
test:
[
"CMD-SHELL",
"pg_isready -U ${POSTGRES_USER:-balout} -d ${POSTGRES_DB:-balout_pastry}",
]
interval: 5s
timeout: 5s
retries: 5
volumes:
balout_postgres_data: