Skip to content

Commit b03fb35

Browse files
committed
deploy gitignore
1 parent ed27df9 commit b03fb35

File tree

1 file changed

+87
-1
lines changed

1 file changed

+87
-1
lines changed

.gitignore

Lines changed: 87 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,88 @@
1+
# API Keys
2+
pplx_api_key
3+
.pplx_api_key
4+
PPLX_API_KEY
5+
.PPLX_API_KEY
6+
*.key
7+
.env
8+
.env.*
9+
10+
# Python
11+
__pycache__/
12+
*.py[cod]
13+
*$py.class
14+
*.so
15+
.Python
16+
build/
17+
develop-eggs/
18+
dist/
19+
downloads/
20+
eggs/
21+
.eggs/
22+
lib/
23+
lib64/
24+
parts/
25+
sdist/
26+
var/
27+
wheels/
28+
*.egg-info/
29+
.installed.cfg
30+
*.egg
31+
32+
# Virtual environments
33+
venv/
34+
env/
35+
ENV/
36+
.venv/
37+
.env/
38+
.ENV/
39+
env.bak/
40+
venv.bak/
41+
.python-version
42+
43+
# IDE specific files
44+
.idea/
45+
.vscode/
46+
*.swp
47+
*.swo
48+
*~
49+
.project
50+
.pydevproject
51+
.settings/
152
.DS_Store
2-
**/.DS_Store
53+
54+
# Testing
55+
.coverage
56+
htmlcov/
57+
.pytest_cache/
58+
.tox/
59+
nosetests.xml
60+
coverage.xml
61+
*.cover
62+
.hypothesis/
63+
64+
# Logs
65+
logs/
66+
*.log
67+
npm-debug.log*
68+
yarn-debug.log*
69+
yarn-error.log*
70+
71+
# Project-specific
72+
article.txt
73+
claims.txt
74+
facts.txt
75+
test_articles/
76+
results/
77+
custom_prompt.md
78+
output.json
79+
report.json
80+
81+
# OS specific files
82+
.DS_Store
83+
.DS_Store?
84+
._*
85+
.Spotlight-V100
86+
.Trashes
87+
ehthumbs.db
88+
Thumbs.db

0 commit comments

Comments
 (0)