Update gitignore

This commit is contained in:
2026-02-08 22:45:16 +00:00
parent b98ab1a5c6
commit ee56595292
2 changed files with 15 additions and 0 deletions
+7
View File
@@ -36,9 +36,16 @@ logs/*.jsonl
.web/ .web/
.states/ .states/
<<<<<<< Updated upstream
# SQLite database (will contain local data) # SQLite database (will contain local data)
#*.db #*.db
#*.sqlite #*.sqlite
=======
# SQLite databases (except pathways.db which contains pre-computed data)
*.db
!data/pathways.db
*.sqlite
>>>>>>> Stashed changes
# Snowflake result cache # Snowflake result cache
data/cache/ data/cache/
+8
View File
@@ -1,4 +1,12 @@
"""Entry point for the Dash application.""" """Entry point for the Dash application."""
import sys
from pathlib import Path
# Ensure src/ is on sys.path so that core/, data_processing/, etc. are importable
_src_dir = str(Path(__file__).resolve().parent / "src")
if _src_dir not in sys.path:
sys.path.insert(0, _src_dir)
from dash_app.app import app from dash_app.app import app
if __name__ == "__main__": if __name__ == "__main__":