From 6fb3afa47267ffbbc64857837e359a9a70ab9605 Mon Sep 17 00:00:00 2001 From: juanjo <130799031+juanminguezsanz2023@users.noreply.github.com> Date: Sun, 12 Apr 2026 22:11:51 +0200 Subject: [PATCH] fix para ficheros que no se suben --- .env.example | 10 ++++++++++ .gitignore | 10 ++++++++++ 2 files changed, 20 insertions(+) create mode 100644 .env.example diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..f8f4030 --- /dev/null +++ b/.env.example @@ -0,0 +1,10 @@ +# Seguridad +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 0d20b64..ef4cf2e 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,11 @@ +# Configuración personal y secretos +.env +.env.local + +# Docker local (si decides no subirlo) +deployments/docker-compose.override.yml + +# Archivos de datos de la DB local +postgres_data/ +local_postgres_data/ *.pyc