-
Notifications
You must be signed in to change notification settings - Fork 68
/
.gitignore
79 lines (57 loc) · 863 Bytes
/
.gitignore
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
# Environment variables
.env
.env.local
.env.production
.env.staging
# OS X
.DS_Store
# Python
__pycache__/
*.pyc
*.pyo
.python-version
api/api.egg-info/*
# Visual Studio Code
.vscode/
#project specific settings
.settings/
*.code-workspace
# langchain generated folders
data/flagged_data_points/
# Virtual Environment
venv/
.venv/
# jupyter
*.ipynb
.ipynb_checkpoints/
# Github Actions and nektos/act
act.env
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
# dependencies
www/node_modules
www/.pnp
www/.pnp.js
# testing
www/coverage
# next.js
www/.next/
/out/
# production
/build
# misc
www/.DS_Store
www/*.pem
# debug
www/npm-debug.log*
www/yarn-debug.log*
www/yarn-error.log*
# local env files
www/.env*.local
# vercel
www/.vercel
# typescript
www/*.tsbuildinfo
www/next-env.d.ts
.vercel
.yarn/
dist/