From e5eef143fcaa58eba9f8475bc3da7f27fadfc680 Mon Sep 17 00:00:00 2001 From: ske087 Date: Sun, 10 Aug 2025 09:14:04 +0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9D=20Update=20.gitignore=20-=20Exclud?= =?UTF-8?q?e=20user-generated=20media=20and=20data=20files?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Added app/static/media/posts/ to exclude user-uploaded GPX files and images - Added data/ directory to exclude database and runtime data - Cleaned up temporary backup files - Ensures repository stays clean while preserving application functionality --- .gitignore | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 01246ed..610d60a 100644 --- a/.gitignore +++ b/.gitignore @@ -120,4 +120,8 @@ uploads/ *.db *.sqlite instance/ -venv/ \ No newline at end of file +venv/ + +# Media files and user content +app/static/media/posts/ +data/ \ No newline at end of file