37 lines
989 B
Plaintext
37 lines
989 B
Plaintext
# Server
|
|
NODE_ENV=development
|
|
PORT=8000
|
|
|
|
# Service Targets (for local gateway, Docker services)
|
|
USER_AUTH_URL=http://localhost:8011
|
|
TEMPLATE_MANAGER_URL=http://localhost:8009
|
|
REQUIREMENT_PROCESSOR_URL=http://localhost:8001
|
|
TECH_STACK_SELECTOR_URL=http://localhost:8002
|
|
ARCHITECTURE_DESIGNER_URL=http://localhost:8003
|
|
CODE_GENERATOR_URL=http://localhost:8004
|
|
TEST_GENERATOR_URL=http://localhost:8005
|
|
DEPLOYMENT_MANAGER_URL=http://localhost:8006
|
|
DASHBOARD_URL=http://localhost:8008
|
|
|
|
# Infrastructure
|
|
REDIS_HOST=redis
|
|
REDIS_PORT=6379
|
|
REDIS_PASSWORD=secure_redis_password
|
|
POSTGRES_HOST=postgres
|
|
POSTGRES_PORT=5432
|
|
POSTGRES_DB=dev_pipeline
|
|
POSTGRES_USER=pipeline_admin
|
|
POSTGRES_PASSWORD=secure_postgres_password
|
|
RABBITMQ_HOST=rabbitmq
|
|
RABBITMQ_PORT=5672
|
|
RABBITMQ_USER=pipeline_admin
|
|
RABBITMQ_PASSWORD=secure_rabbitmq_password
|
|
|
|
# CORS
|
|
FRONTEND_URL=http://localhost:3001
|
|
|
|
# CORS Configuration
|
|
CORS_ORIGIN=http://localhost:3001
|
|
CORS_METHODS=GET,POST,PUT,DELETE,PATCH,OPT
|
|
IONS
|
|
CORS_CREDENTIALS=true |