37 lines
1.0 KiB
Plaintext
37 lines
1.0 KiB
Plaintext
# Server
|
|
NODE_ENV=development
|
|
PORT=8000
|
|
|
|
# Service Targets (for Docker services)
|
|
USER_AUTH_URL=http://user-auth:8011
|
|
TEMPLATE_MANAGER_URL=http://template-manager:8009
|
|
REQUIREMENT_PROCESSOR_URL=http://requirement-processor:8001
|
|
TECH_STACK_SELECTOR_URL=http://tech-stack-selector:8002
|
|
ARCHITECTURE_DESIGNER_URL=http://architecture-designer:8003
|
|
CODE_GENERATOR_URL=http://code-generator:8004
|
|
TEST_GENERATOR_URL=http://test-generator:8005
|
|
DEPLOYMENT_MANAGER_URL=http://deployment-manager:8006
|
|
DASHBOARD_URL=http://dashboard: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=https://dashboard.codenuk.com
|
|
|
|
# CORS Configuration
|
|
CORS_ORIGIN=https://dashboard.codenuk.com
|
|
CORS_METHODS=GET,POST,PUT,DELETE,PATCH,OPT
|
|
IONS
|
|
CORS_CREDENTIALS=true |