Init monorepo: Frontend + Backend

This commit is contained in:
2025-11-20 06:59:26 +09:00
commit 3fa73b869b
35 changed files with 7898 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
version: '3.8'
services:
postgres:
image: postgres:15
environment:
POSTGRES_USER: admin
POSTGRES_PASSWORD: password123
POSTGRES_DB: surveydb
ports:
- "5432:5432"
volumes:
- postgres_data:/var/lib/postgresql/data
volumes:
postgres_data: