From e9cb1edf59f346fe57c732dd76a0bdea1b651720 Mon Sep 17 00:00:00 2001 From: EidanThen Date: Thu, 27 Aug 2026 17:57:57 -0400 Subject: [PATCH] chore: ignora datos pesados ORS y limpia indice - Agrega .gitignore raiz para elevation_cache, graphs, *.pbf, *.gh, *.zip, node_modules, dist, .angular - git rm --cached de ~77 archivos binarios (1.7GB) trackeados previamente - Archivos permanecen en disco pero ya no se trackean ni se subiran a Gitea --- .gitignore | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..9e3cbf7 --- /dev/null +++ b/.gitignore @@ -0,0 +1,34 @@ +# --- ORS datos pesados / regenerables (1.7GB+ duplicados) --- +**/elevation_cache/ +**/graphs/ +*.pbf +*.gh +*.zip + +# --- Angular / Node (297MB) --- +**/node_modules/ +**/dist/ +**/.angular/ +**/out-tsc/ +npm-debug.log* +yarn-debug.log* +yarn-error.log* +.pnp.* + +# --- Env y secretos --- +.env +.env.* +*.key +*.pem + +# --- Logs --- +*.log +logs/ + +# --- OS / IDE --- +.DS_Store +Thumbs.db +.idea/ +.vscode/ +*.swp +*~