🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
23 lines
615 B
Plaintext
23 lines
615 B
Plaintext
# ColaFlow Environment Variables Template
|
|
# Copy this file to .env and update with your values
|
|
|
|
# Database Configuration
|
|
POSTGRES_DB=colaflow
|
|
POSTGRES_USER=colaflow
|
|
POSTGRES_PASSWORD=colaflow_dev_password
|
|
|
|
# Redis Configuration
|
|
REDIS_PASSWORD=colaflow_redis_password
|
|
|
|
# Backend Configuration
|
|
ASPNETCORE_ENVIRONMENT=Development
|
|
JWT_SECRET_KEY=ColaFlow-Development-Secret-Key-Min-32-Characters-Long-2025
|
|
|
|
# Frontend Configuration
|
|
NEXT_PUBLIC_API_URL=http://localhost:5000
|
|
NEXT_PUBLIC_WS_URL=ws://localhost:5000/hubs/project
|
|
|
|
# Optional Tools
|
|
# Uncomment to enable pgAdmin and Redis Commander
|
|
# COMPOSE_PROFILES=tools
|