feat: add api http conventions and booking state rules

This commit is contained in:
2026-09-18 17:17:47 +08:00
parent 0d4caaba00
commit 0e8b8e1591
5 changed files with 61 additions and 0 deletions

15
docker-compose.yml Normal file
View File

@@ -0,0 +1,15 @@
services:
postgres:
image: postgres:16-alpine
restart: unless-stopped
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: personal_brand
ports:
- "5432:5432"
volumes:
- personal-brand-postgres:/var/lib/postgresql/data
volumes:
personal-brand-postgres: