Skip to content

Commit 21a2351

Browse files
committed
Update .gitignore, remove unused dep, add runtime files
Simplified and updated .gitignore to better reflect current project structure and exclude unnecessary files. Removed unused 'langchain-core' from backend requirements. Added runtime.txt for Python version specification and supabase CLI version tracking.
1 parent 44624a0 commit 21a2351

4 files changed

Lines changed: 18 additions & 134 deletions

File tree

.gitignore

Lines changed: 16 additions & 133 deletions
Original file line numberDiff line numberDiff line change
@@ -1,142 +1,25 @@
1-
# Logs
2-
logs
3-
*.log
4-
npm-debug.log*
5-
yarn-debug.log*
6-
yarn-error.log*
7-
lerna-debug.log*
8-
.pnpm-debug.log*
9-
10-
# Diagnostic reports (https://nodejs.org/api/report.html)
11-
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
12-
13-
# Runtime data
14-
pids
15-
*.pid
16-
*.seed
17-
*.pid.lock
18-
19-
# Directory for instrumented libs generated by jscoverage/JSCover
20-
lib-cov
21-
22-
# Coverage directory used by tools like istanbul
23-
coverage
24-
*.lcov
25-
26-
# nyc test coverage
27-
.nyc_output
28-
29-
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
30-
.grunt
31-
32-
# Bower dependency directory (https://bower.io/)
33-
bower_components
34-
35-
# node-waf configuration
36-
.lock-wscript
37-
38-
# Compiled binary addons (https://nodejs.org/api/addons.html)
39-
build/Release
40-
41-
# Dependency directories
1+
# Node.js dependencies
422
node_modules/
43-
jspm_packages/
44-
45-
# Snowpack dependency directory (https://snowpack.dev/)
46-
web_modules/
47-
48-
# TypeScript cache
49-
*.tsbuildinfo
50-
51-
# Optional npm cache directory
52-
.npm
53-
54-
# Optional eslint cache
55-
.eslintcache
56-
57-
# Optional stylelint cache
58-
.stylelintcache
593

60-
# Microbundle cache
61-
.rpt2_cache/
62-
.rts2_cache_cjs/
63-
.rts2_cache_es/
64-
.rts2_cache_umd/
4+
# Build outputs
5+
dist/
656

66-
# Optional REPL history
67-
.node_repl_history
68-
69-
# Output of 'npm pack'
70-
*.tgz
71-
72-
# Yarn Integrity file
73-
.yarn-integrity
74-
75-
# dotenv environment variable files
7+
# Environment variables
768
.env
77-
.env.development.local
78-
.env.test.local
79-
.env.production.local
80-
.env.local
819
backend/.env
8210

83-
# parcel-bundler cache (https://parceljs.org/)
84-
.cache
85-
.parcel-cache
86-
87-
# Next.js build output
88-
.next
89-
out
90-
91-
# Nuxt.js build / generate output
92-
.nuxt
93-
dist
94-
95-
# Gatsby files
96-
.cache/
97-
# Comment in the public line in if your project uses Gatsby and not Next.js
98-
# https://nextjs.org/blog/next-9-1#public-directory-support
99-
# public
100-
101-
# vuepress build output
102-
.vuepress/dist
103-
104-
# vuepress v2.x temp and cache directory
105-
.temp
106-
.cache
107-
108-
# vitepress build output
109-
**/.vitepress/dist
110-
111-
# vitepress cache directory
112-
**/.vitepress/cache
113-
114-
# Docusaurus cache and generated files
115-
.docusaurus
116-
117-
# Serverless directories
118-
.serverless/
119-
120-
# FuseBox cache
121-
.fusebox/
122-
123-
# DynamoDB Local files
124-
.dynamodb/
11+
# Logs
12+
npm-debug.log*
13+
yarn-debug.log*
14+
yarn-error.log*
12515

126-
# TernJS port file
127-
.tern-port
16+
# OS files
17+
.DS_Store
12818

129-
# Stores VSCode versions used for testing VSCode extensions
130-
.vscode-test
19+
# Python cache files and compiled bytecode
20+
**/__pycache__/
21+
*.pyc
13122

132-
# yarn v2
133-
.yarn/cache
134-
.yarn/unplugged
135-
.yarn/build-state.yml
136-
.yarn/install-state.gz
137-
.pnp.*
138-
CLAUDE.md
139-
/.claude
140-
/trainingdocs
141-
/docs
142-
SQL_BALL_RAG_PLAN.md
23+
# Exclude backend database and binary artifacts (if not required in version control)
24+
backend/chroma_db/chroma.sqlite3
25+
backend/chroma_db/**/data_level0.bin

backend/requirements.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ fastapi==0.104.1
22
uvicorn[standard]==0.24.0
33
langchain==0.1.17
44
langchain-openai==0.1.8
5-
langchain-core==0.1.52
65
langchain-community==0.0.38
76
chromadb==0.4.24
87
python-dotenv==1.0.0

runtime.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
python-3.13.7

supabase/.temp/cli-latest

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
v2.40.7

0 commit comments

Comments
 (0)