feat: bootstrap b2bcall saas architecture

- monorepo skeleton (apps/, packages/, infrastructure/, scripts/, docs/)
- docker-compose with PostgreSQL 18 and Redis 7 (localhost-only)
- .gitignore and .env.example
- initial TODO.md and docs/ARCHITECTURE.md
This commit is contained in:
2026-08-27 23:12:29 -03:00
parent e79ad6e1be
commit 2f130622d1
8 changed files with 6638 additions and 0 deletions

32
.gitignore vendored Normal file
View File

@@ -0,0 +1,32 @@
# Secrets — never commit
.env
.env.*
!.env.example
FIRST_LOGIN.txt
*.pem
*.key
# Dependencies
node_modules/
.pnpm-store/
# Build output
dist/
build/
.next/
.turbo/
# Logs
*.log
npm-debug.log*
# OS
.DS_Store
Thumbs.db
# IDE
.vscode/
.idea/
# Docker volumes / data
infrastructure/**/data/