43 lines
1.7 KiB
Plaintext
43 lines
1.7 KiB
Plaintext
# =============================================================================
|
|
# Student Enrollment System - Environment Variables
|
|
# =============================================================================
|
|
# Copiar este archivo a .env y ajustar los valores
|
|
# NUNCA commitear el archivo .env con credenciales reales
|
|
# =============================================================================
|
|
|
|
# -----------------------------------------------------------------------------
|
|
# Database (SQL Server)
|
|
# -----------------------------------------------------------------------------
|
|
DB_HOST=localhost
|
|
DB_PORT=1433
|
|
DB_NAME=StudentEnrollment
|
|
DB_USER=sa
|
|
DB_PASSWORD=Your_Str0ng_P@ssword!
|
|
|
|
# -----------------------------------------------------------------------------
|
|
# API (.NET)
|
|
# -----------------------------------------------------------------------------
|
|
ASPNETCORE_ENVIRONMENT=Development
|
|
API_PORT=5000
|
|
CORS_ORIGINS=http://localhost:4200
|
|
|
|
# -----------------------------------------------------------------------------
|
|
# GraphQL
|
|
# -----------------------------------------------------------------------------
|
|
GRAPHQL_MAX_DEPTH=5
|
|
GRAPHQL_MAX_COMPLEXITY=100
|
|
GRAPHQL_INTROSPECTION=true
|
|
|
|
# -----------------------------------------------------------------------------
|
|
# Logging (Serilog)
|
|
# -----------------------------------------------------------------------------
|
|
LOG_LEVEL=Information
|
|
LOG_PATH=logs/app-.log
|
|
|
|
# -----------------------------------------------------------------------------
|
|
# Frontend (Angular)
|
|
# -----------------------------------------------------------------------------
|
|
FRONTEND_PORT=4200
|
|
GRAPHQL_URL=http://localhost:5000/graphql
|
|
HEALTH_CHECK_URL=http://localhost:5000/health
|