From 9d3cb3dfd027e9de96f016e963762a5fc402c94b Mon Sep 17 00:00:00 2001 From: Wally Hackenslacker Date: Mon, 23 Mar 2026 21:21:22 -0400 Subject: [PATCH] gitignore: ignore top-level static/ but allow app-level static/ (unignore */static/) --- .gitignore | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index b8dd350..0e11707 100644 --- a/.gitignore +++ b/.gitignore @@ -29,8 +29,10 @@ share/python-wheels/ .installed.cfg *.egg MANIFEST -#static/ -!apps/*/static +# Ignore only the top-level static/ directory +/static/ +# But do not ignore app-level static directories (e.g. viewer/static/) +!*/static/ # PyInstaller # Usually these files are written by a python script from a template @@ -360,4 +362,3 @@ Icon Network Trash Folder Temporary Items .apdisk -