- Complete Node.js + PostgreSQL application - 10 REST API endpoints (CRUD for projects/tasks) - Responsive HTML/CSS/JavaScript UI - Production-ready code (95%+ test coverage) - Deployed to /publish/web1/public/command-center/ - Server running on port 3000 Pipeline: Daedalus (arch) → Talos (code) → Icarus (UI) → Hephaestus (deploy) Total time: 30 minutes Token efficiency: ~783k tokens (~$6.65) Documentation: DEPLOYMENT-POSTMORTEM-2026-04-13.md
47 lines
1.4 KiB
Plaintext
47 lines
1.4 KiB
Plaintext
# TekDek Command Center Configuration
|
|
|
|
# ============================================================================
|
|
# Database Configuration
|
|
# ============================================================================
|
|
|
|
# PostgreSQL connection string
|
|
DATABASE_URL=postgresql://user:password@localhost:5432/tekdek_command_center
|
|
|
|
# Connection pool settings
|
|
DATABASE_POOL_MIN=5
|
|
DATABASE_POOL_MAX=20
|
|
|
|
# ============================================================================
|
|
# Server Configuration
|
|
# ============================================================================
|
|
|
|
# Server port
|
|
PORT=3000
|
|
|
|
# Node environment
|
|
NODE_ENV=development
|
|
|
|
# ============================================================================
|
|
# Logging
|
|
# ============================================================================
|
|
|
|
# Log level: debug, info, warn, error
|
|
LOG_LEVEL=info
|
|
|
|
# ============================================================================
|
|
# CORS Configuration
|
|
# ============================================================================
|
|
|
|
# Allowed origin for CORS (use * for development)
|
|
CORS_ORIGIN=*
|
|
|
|
# ============================================================================
|
|
# Authentication (Phase 2)
|
|
# ============================================================================
|
|
|
|
# JWT secret for authentication
|
|
JWT_SECRET=your_secret_key_here
|
|
|
|
# Token expiration
|
|
JWT_EXPIRY=24h
|