feat: integración final de Jenkins con inyección de .env segura
All checks were successful
DEPLOY_MULTI_BRACH/pipeline/head This commit looks good
All checks were successful
DEPLOY_MULTI_BRACH/pipeline/head This commit looks good
This commit is contained in:
34
deployments/.env.example
Normal file
34
deployments/.env.example
Normal file
@@ -0,0 +1,34 @@
|
||||
# =================================================================
|
||||
# 🏗️ INFRAESTRUCTURA (Docker & Jenkins)
|
||||
# =================================================================
|
||||
# Nombres que tomarán los contenedores en Docker
|
||||
APP_CONTAINER_NAME=
|
||||
DB_CONTAINER_NAME=
|
||||
|
||||
# Nombre del proyecto para Docker Compose (usado en Jenkins)
|
||||
PROJECT_NAME=
|
||||
|
||||
# Puertos que se abrirán al exterior (Host)
|
||||
PORT=
|
||||
DATABASE_EXPOSE_PORT=
|
||||
|
||||
# =================================================================
|
||||
# 🐍 CONFIGURACIÓN DE DJANGO
|
||||
# =================================================================
|
||||
# True para desarrollo, False para producción
|
||||
DEBUG=
|
||||
# Genera una clave segura: https://djecrety.ir/
|
||||
SECRET_KEY=
|
||||
# Lista separada por comas: localhost,127.0.0.1,tudominio.com
|
||||
ALLOWED_HOSTS=
|
||||
|
||||
# =================================================================
|
||||
# 🗄️ BASE DE DATOS (PostgreSQL)
|
||||
# =================================================================
|
||||
DB_NAME=
|
||||
DB_USER=
|
||||
DB_PASSWORD=
|
||||
|
||||
# El HOST debe ser "db" cuando se usa Docker Compose
|
||||
DB_HOST=
|
||||
DB_PORT=
|
||||
Reference in New Issue
Block a user