-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy path.gitignore
More file actions
125 lines (99 loc) · 2.34 KB
/
Copy path.gitignore
File metadata and controls
125 lines (99 loc) · 2.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
# environment variables — repo-wide guard. Real dotenvs (Concierge/.env.concierge,
# Heartbeat/.env.heartbeat, droplet-written) sit NEXT TO tracked .example templates,
# and the old path-specific list (Main/backend/.env, chat_interface/...) silently
# rotted each time a service was added: a `git add -A` from the repo root would have
# staged live Discord/OpenAI credentials. Ignore every dotenv shape everywhere; the
# two negations re-include ONLY the committed onboarding templates. Sentinel:
# Main/backend/tests/test_gitignore_env.py pins both directions.
.env
.env.*
!.env.example
!.env.*.example
# google cookie
Main/backend/.google-cookie
# Intellij Idea and VS
/.idea/
/.vs/
FinGPT_Demo.iml
# node modules
Main/frontend/node_modules/
Main/backend/node_modules/
# npm packages (legacy - now using bun for frontend)
Main/backend/package-lock.json
# bun (keep bun.lock for reproducible builds)
# Main/frontend/bun.lock should be committed
# Python cache files
__pycache__/
*.py[cod]
*$py.class
*.pyc
*.pyo
*.pyd
.Python
*.so
# Python distribution / packaging
build/
# Sphinx HTML build output
_build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
# Poetry
poetry.lock
# venv
/FinGPTenv
# rag local embeddings
Main/backend/datascraper/embeddings.pkl
Main/backend/datascraper/faiss_index.idx
# Sphinx doc build
/Docs/build
# webpack build
/Main/frontend/dist
/Main/frontend/dist.zip
# question logging
Main/backend/api/questionLog.csv
# django debug log
Main/backend/django_debug.log
# user preferred links
# mcp
/mcp-server/.venv
/mcpTest
# claude code local settings
.claude/
CLAUDE.md
AGENTS.md
# serena (the claude code plugin)
/.serena
# superpowers (claude code plugin)
.superpower/
# git worktrees
.worktrees/
# uv
mcp-server/uv.lock
# frontend reference screenshots
/Main/frontend/UI_References
/Main/frontend/UI_Bugs/
# additional cache directories
/Main/backend/datascraper/__pycache__
/Main/backend/django_config/__pycache__
/Main/backend/mcp_client/__pycache__
/Main/backend/api/__pycache__
# scripts
Main/backend/scripts/buffet_agent_test.py
# docker build file
fingpt-api.tar
# sample conversations used for giving AI context on the current UX of the search agent
# may contain personal or sensitive information, therefore it is ignored
/SampleConversations
/agentic-finsearch-manual