Skip to content

Commit 602733e

Browse files
committed
ignore updates
1 parent 3cd5533 commit 602733e

7 files changed

Lines changed: 60 additions & 997 deletions

.gitignore

Lines changed: 60 additions & 86 deletions
Original file line numberDiff line numberDiff line change
@@ -1,114 +1,88 @@
1-
# 1️⃣ Python Cache and Bytecode
1+
# === IDE / Editor ===
2+
.nova/
3+
.vscode/
4+
.idea/
5+
*.swp
6+
*.swo
7+
*.sublime-*
8+
.flake8
9+
.vercelignore
10+
11+
# === OS Generated ===
12+
.DS_Store
13+
Thumbs.db
14+
desktop.ini
15+
16+
# === Python ===
217
__pycache__/
3-
*.pyc
4-
*.pyo
18+
*.py[cod]
519
*.pyd
6-
*.cache
7-
8-
# 2️⃣ Virtual Environment (venv)
920
venv/
10-
env/
11-
*.venv
21+
.venv/
22+
*.egg-info/
1223
pip-log.txt
13-
pip-delete-this-directory.txt
14-
conda
15-
main_chat/rag_pipeline/rags/*
16-
main_chat/pocEnv/*
1724

18-
# 3️⃣ Environment Variables (SECURITY: Protect API Keys & Secrets)
19-
.env
20-
*.env
25+
# === Environment & Secrets ===
2126
.env*
22-
config.json # If sensitive configs are stored here
27+
!.env.example
28+
config.json
2329
secrets.json
30+
credentials/*
31+
!credentials/.gitkeep
2432

25-
# 4️⃣ Logs and Databases
26-
llm_query_log.csv
33+
# === Logs & State ===
34+
logs/*
35+
!logs/.gitkeep
2736
*.log
28-
logs/
37+
*.jsonl
38+
data/.sync*
39+
40+
# === Databases ===
2941
*.sqlite
42+
*.sqlite3
3043
*.db
3144

45+
# === Vector DB (large binary data) ===
46+
vectordb/
3247

33-
34-
# 5️⃣ Flask & Gunicorn Deployment Files
35-
instance/
36-
*.pid
37-
*.sock
38-
gunicorn.log
39-
gunicorn.error.log
40-
41-
# 6️⃣ IDE and Editor Configurations
42-
.vscode/
43-
.idea/
44-
*.swp
45-
*.swo
46-
*.swn
47-
*.sublime-workspace
48-
*.sublime-project
49-
50-
# 7️⃣ Jupyter Notebook Checkpoints
51-
.ipynb_checkpoints/
52-
53-
# 8️⃣ Docker and Build Files (If Used)
54-
docker-compose.yml
55-
# Dockerfile
56-
__docker_temp/
57-
*.dockerfile
58-
*.whl
59-
60-
# 9️⃣ System Files (Mac & Windows)
61-
.DS_Store
62-
Thumbs.db
63-
desktop.ini
64-
65-
# 1️⃣0️⃣ Node.js & Frontend Build Files (If Applicable)
48+
# === Node.js ===
6649
node_modules/
6750
npm-debug.log*
68-
yarn.lock
6951
dist/
7052
build/
71-
public/config.js
72-
73-
# 1️⃣1️⃣ Miscellaneous
74-
*.bak
75-
*.tmp
76-
*.log
77-
gemini_api.key.txt
78-
cookies.txt
79-
*.jsonl
80-
81-
# credentails
82-
credentials/*
83-
!credentials/.gitkeep
84-
85-
# nova
86-
.nova
8753

88-
# exclude data files from data folders
54+
# === Data directories (with exceptions) ===
8955
**/cache/*
9056
**/data/*
91-
!experiment-PIT/public/data/map_2.geojson
92-
!experiment-PIT/public/data/process_311.ts
93-
!experiment-PIT/public/data/process_911.ts
57+
!**/cache/.gitkeep
58+
!**/data/.gitkeep
9459
api/datastore/*
95-
main_chat/rag_stuff/data/*
96-
vectordb_new/*
60+
!api/datastore/.gitkeep
61+
data/*
9762

98-
# exception to the rule
99-
**/cache/.gitkeep
100-
**/data/.gitkeep
101-
!api/datastore/.gitkeep
63+
# Specific datastore files to keep
64+
api/datastore/*
65+
!api/datastore/.gitkeep
10266
!api/datastore/geocoding-community-assets.csv
10367
!api/datastore/budget_data_dictionary_v1.txt
10468
!api/datastore/budget_filtered.txt
10569
!api/datastore/Imagine Boston 2030 Analysis.txt
10670
!api/datastore/Boston Slow Streets Plan Analysis.txt
10771
!api/datastore/Boston Anti-Displacement Plan Analysis.txt
108-
!api/*.sql
109-
!setup/*.sql
110-
main_chat/data/ingestion_log.jsonl
111-
main_chat/data_ingestion/reset_table.sql
112-
temp_downloads/
113-
vectordb/
114-
data/.sync*
72+
73+
# === Flask / Gunicorn ===
74+
instance/
75+
*.pid
76+
*.sock
77+
78+
# === Jupyter ===
79+
.ipynb_checkpoints/
80+
81+
# === Build / Temp ===
82+
*.bak
83+
*.tmp
84+
*.whl
85+
structure.txt
86+
87+
# === Project-specific config (generated at runtime) ===
88+
public/config.js

api/datastore/Boston Anti-Displacement Plan Analysis.txt

Lines changed: 0 additions & 231 deletions
This file was deleted.

api/datastore/Boston Slow Streets Plan Analysis.txt

Lines changed: 0 additions & 172 deletions
This file was deleted.

api/datastore/Imagine Boston 2030 Analysis.txt

Lines changed: 0 additions & 291 deletions
This file was deleted.

api/datastore/budget_data_dictionary_v1.txt

Lines changed: 0 additions & 3 deletions
This file was deleted.

0 commit comments

Comments
 (0)