-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy path.gitignore
More file actions
92 lines (78 loc) · 1.07 KB
/
.gitignore
File metadata and controls
92 lines (78 loc) · 1.07 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
cache/
agents/mabool/api/cache
.idea/
# IDE stuff
.idea/
.vscode/
*.sublime-project
*.sublime-workspace
**/.DS_Store
**/.vscode
**/.idea
**/mabool.db-shm
**/mabool.db-wal
# neovim stuff
**/pyrightconfig.json
**/.null-ls*
# Python
.venv/
.venv
__pycache__/
**/.mypy_cache
**/.pytest_cache
*.pyc
*.pyo
*.pyd
**/*.egg-info
agents/mabool/api/Pipfile.lock
# IPython and Jupyter Notebook
.ipynb_checkpoints/
.ipynb_checkpoints/*
# Node.js
node_modules/
npm-debug.log
yarn-error.log
# API keys
**/*api_key.txt
**/*api_key.json
**/*api-key.txt
**/*api-key.json
**/*key.json
**/gcp-creds.json
secret
*secret*
.secrets.*
*.secrets.*
**/secret
.env.secret
# data files
**/async-state/**
temp_data
centrality_queries
**/test_analyzed_results_dump.jsonl
mabool.db
mabool.db-journal
mabool.db.lock
# git worktrees
branches/**
# distribution files
**/dist/
**/build/
agents/mabool/api/requirements.txt
# profiling
**/*.prof
# coverage
**/*.coverage
**/*.coverage.*
**/*,cover
lcov.info
# logs
sqlAlchemy.log*
vcr.log*
server.log*
# aider
.aider*
# plots
**/plots/
# devbox files
**/.devbox/**