diff --git a/.env b/.env index 747b2f7..f8f4030 100644 --- a/.env +++ b/.env @@ -1,5 +1,10 @@ # Seguridad -CONTAINER_NAME=django_local -PORT=8000 -DEBUG_MODE=1 -PROJECT_NAME=django_dev_local \ No newline at end of file +DEBUG=True +SECRET_KEY=una-clave-muy-secreta-y-larga-123456 + +# Base de Datos (Conectando al PostgreSQL que instalamos) +DB_NAME=gitea +DB_USER=gitea +DB_PASSWORD=gitea +DB_HOST=gitea-db +DB_PORT=5432 \ No newline at end of file diff --git a/.gitignore b/.gitignore index 29f322e..0d20b64 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1 @@ *.pyc -.env