Monorepo pnpm avec NestJS backend en architecture hexagonale. - Structure hexagonale complète (ports, adapters, domain entities) - 9 entities TypeORM (Home, User, Device, Credentials, Session, Message, Memory, Timer) - Migration initiale SQL avec pgvector support - Docker Compose (PostgreSQL 16 + pgvector + Redis 7) - Config partagée (tsconfig, ESLint, Prettier) - Outbound ports définis (STT, TTS, LLM, Cache, Storage, VectorStore) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
22 lines
351 B
Plaintext
22 lines
351 B
Plaintext
# Database
|
|
DATABASE_HOST=localhost
|
|
DATABASE_PORT=5432
|
|
DATABASE_USER=tipote
|
|
DATABASE_PASSWORD=tipote
|
|
DATABASE_NAME=tipote
|
|
DB_PASSWORD=tipote
|
|
|
|
# Redis
|
|
REDIS_HOST=localhost
|
|
REDIS_PORT=6379
|
|
|
|
# App
|
|
PORT=3000
|
|
NODE_ENV=development
|
|
ENCRYPTION_KEY=change-me-32-char-encryption-key!
|
|
|
|
# LLM (à configurer plus tard)
|
|
# LLM_API_KEY=
|
|
# STT_API_KEY=
|
|
# TTS_API_KEY=
|