Text · 2608 bytes Raw Blame History
1 # cast a wide net
2
3 # Python
4 *.pyc
5 *.pyo
6 *.pyd
7 __pycache__/
8 *.so
9 .Python
10 env/
11 venv/
12 ENV/
13 env.bak/
14 venv.bak/
15 .venv/
16 .jubenv/
17 pip-log.txt
18 pip-delete-this-directory.txt
19 .pytest_cache/
20 *.egg-info/
21 .coverage
22 htmlcov/
23 .tox/
24 .cache
25 nosetests.xml
26 coverage.xml
27 *.cover
28 .hypothesis/
29
30 # Django
31 *.log
32 local_settings.py
33 db.sqlite3
34 db.sqlite3-journal
35 media/
36 staticfiles/
37 .static_storage/
38 .media/
39 celerybeat-schedule
40 celerybeat.pid
41
42 # Node.js
43 node_modules/
44 npm-debug.log*
45 yarn-debug.log*
46 yarn-error.log*
47 lerna-debug.log*
48 .pnpm-debug.log*
49
50 # Next.js
51 .next/
52 out/
53 build/
54 dist/
55 *.tsbuildinfo
56 next-env.d.ts
57
58 # Environment variables
59 .env
60 .env.local
61 .env.development.local
62 .env.test.local
63 .env.production.local
64 .env.*.local
65
66 # IDEs and editors
67 .vscode/
68 .idea/
69 *.swp
70 *.swo
71 *~
72 .project
73 .metadata
74 .buildpath
75 .settings/
76 *.sublime-workspace
77 *.sublime-project
78
79 # OS generated files
80 .DS_Store
81 .DS_Store?
82 ._*
83 .Spotlight-V100
84 .Trashes
85 ehthumbs.db
86 Thumbs.db
87 Desktop.ini
88
89 # Logs
90 logs/
91 *.log
92 npm-debug.log*
93 yarn-debug.log*
94 yarn-error.log*
95 lerna-debug.log*
96
97 # Runtime data
98 pids/
99 *.pid
100 *.seed
101 *.pid.lock
102
103 # Coverage directory used by tools like istanbul
104 coverage/
105 *.lcov
106
107 # nyc test coverage
108 .nyc_output/
109
110 # Dependency directories
111 jspm_packages/
112
113 # TypeScript cache
114 *.tsbuildinfo
115
116 # Optional npm cache directory
117 .npm
118
119 # Optional eslint cache
120 .eslintcache
121
122 # Microbundle cache
123 .rpt2_cache/
124 .rts2_cache_cjs/
125 .rts2_cache_es/
126 .rts2_cache_umd/
127
128 # Optional REPL history
129 .node_repl_history
130
131 # Output of 'npm pack'
132 *.tgz
133
134 # Yarn Integrity file
135 .yarn-integrity
136
137 # parcel-bundler cache (https://parceljs.org/)
138 .cache
139 .parcel-cache
140
141 # Next.js build output
142 .next
143
144 # Nuxt.js build / generate output
145 .nuxt
146 dist
147
148 # Storybook build outputs
149 .out
150 .storybook-out
151
152 # Temporary folders
153 tmp/
154 temp/
155
156 # Machine Learning Models
157 # NOTE: We COMMIT hybrid models for fast deployment (Option A)
158 # If training locally, the models in hybrid_models/ should be committed
159 # Only ignore training checkpoints and temporary files
160 backend/jubjub/jubjubword/hybrid_models/*/best_model.pt
161 backend/jubjub/jubjubword/hybrid_models/*/training_history.json
162
163 # Editor directories and files
164 .vscode/*
165 !.vscode/extensions.json
166 .idea
167 *.suo
168 *.ntvs*
169 *.njsproj
170 *.sln
171 *.sw?
172
173 # Local Netlify folder
174 .netlify
175
176 # Vercel
177 .vercel
178
179 # Stores VSCode versions used for testing VSCode extensions
180 .vscode-test
181
182 # Serverless directories
183 .serverless/
184
185 # FuseBox cache
186 .fusebox/
187
188 # DynamoDB Local files
189 .dynamodb/
190
191 # TernJS port file
192 .tern-port
193
194 # Stores VSCode versions used for testing VSCode extensions
195 .vscode-test/
196
197 # yarn v2
198 .yarn/cache
199 .yarn/unplugged
200 .yarn/build-state.yml
201 .yarn/install-state.gz
202 .pnp.*