Full-stack NPI (New Product Introduction) gate tracking tool with: - Express/TypeScript API with PostgreSQL - React/Vite/Mantine frontend - 13-gate process (G0-G12) with 4 product categories - RACI matrix auto-population from templates - File attachments with preview (images, PDFs, text) - Kanban board, Gantt/timeline views - Docker Compose orchestration Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
17 lines
337 B
Text
17 lines
337 B
Text
# Database
|
|
DB_PASSWORD=changeme_in_production
|
|
POSTGRES_DB=npi_tracker
|
|
POSTGRES_USER=npi
|
|
|
|
# App
|
|
APP_PASSWORD=npi2026
|
|
NODE_ENV=development
|
|
API_PORT=3001
|
|
|
|
# Mailgun (stubbed - fill in when ready)
|
|
MAILGUN_API_KEY=
|
|
MAILGUN_DOMAIN=
|
|
MAILGUN_FROM=npi-tracker@yourdomain.com
|
|
|
|
# JWT Secret (for future auth upgrade)
|
|
JWT_SECRET=changeme_jwt_secret
|