Initial BizOne portal setup

This commit is contained in:
2026-05-11 11:36:33 +07:00
commit 57017dd397
249 changed files with 41305 additions and 0 deletions

20
docker-compose.yml Normal file
View File

@ -0,0 +1,20 @@
version: '3.9'
services:
postgres:
image: postgres:16
environment:
POSTGRES_DB: wa_dashboard
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
ports:
- "5432:5432"
volumes:
- pgdata:/var/lib/postgresql/data
redis:
image: redis:7
ports:
- "6379:6379"
volumes:
pgdata: