-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
31 lines (26 loc) · 978 Bytes
/
env.example
File metadata and controls
31 lines (26 loc) · 978 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# Configuración de Django
SECRET_KEY=django-insecure-change-me-in-production
DEBUG=True
ALLOWED_HOSTS=localhost,127.0.0.1
# Configuración de Base de Datos
DB_NAME=academic_db
DB_USER=postgres
DB_PASSWORD=nakamas123
DB_HOST=localhost
DB_PORT=5432
# Configuración de Celery y Redis
CELERY_BROKER_URL=redis://localhost:6379/0
CELERY_RESULT_BACKEND=redis://localhost:6379/0
# Configuración de Email (para producción)
EMAIL_HOST=smtp.gmail.com
EMAIL_PORT=587
EMAIL_USE_TLS=True
EMAIL_HOST_USER=your-email@gmail.com
EMAIL_HOST_PASSWORD=your-app-password
DEFAULT_FROM_EMAIL=noreply@academic.com
# Configuración de Redis (para producción)
REDIS_URL=redis://localhost:6379/1
# Configuración de Datos de Prueba (opcional)
# CREATE_TEST_DATA=true # Crear datos completos (profesores, estudiantes, materias, inscripciones)
# CREATE_SIMPLE_DATA=true # Crear datos básicos (mínimo para pruebas)
# Solo activar UNA opción. Dejar comentado para no cargar datos adicionales.