chore: reorganiza init-db do postgres

This commit is contained in:
Erik Silva
2025-12-09 01:51:56 -03:00
parent 190fde20c3
commit f553114c06
8 changed files with 15 additions and 15 deletions

View File

@@ -71,7 +71,7 @@ AGGIOS-APP/
│ └─ letsencrypt/
│ └─ acme.json (auto-generated)
├─ 📂 postgres/ ← PostgreSQL Setup (NOVO)
├─ 📂 backend/internal/data/postgres/ ← PostgreSQL Setup (NOVO)
│ └─ init-db.sql ✅ Initial schema
├─ 📂 scripts/ ← Helper Scripts (NOVO)

View File

@@ -77,7 +77,7 @@ aggios-app/
│ ├─ dynamic/rules.yml
│ └─ letsencrypt/
├─ 📂 postgres/ .............................. PostgreSQL (NOVO)
├─ 📂 backend/internal/data/postgres/ ........ PostgreSQL (NOVO)
│ └─ init-db.sql
├─ 📂 scripts/ ............................... Scripts (NOVO)

View File

@@ -106,8 +106,8 @@ aggios-app/
│ ├── dynamic/rules.yml # Dynamic routing rules
│ └── letsencrypt/ # Certificados (auto-gerado)
├── postgres/ # Inicialização PostgreSQL
│ └── init-db.sql # Schema initial
├── backend/internal/data/postgres/ # Inicialização PostgreSQL
│ └── init-db.sql # Schema initial
├── scripts/
│ ├── start-dev.sh # Start em Linux/macOS

View File

@@ -228,7 +228,7 @@ DOCKER:
CONFIGURAÇÃO:
├─ YAML files: 2 (traefik.yml, rules.yml)
├─ SQL files: 1 (init-db.sql)
├─ SQL files: 1 (backend/internal/data/postgres/init-db.sql)
├─ .env example: 1
├─ Dockerfiles: 1
└─ Scripts: 2 (start-dev.sh, start-dev.bat)