Skip to content

Commit 7f0e04c

Browse files
committed
generated file: .gitignore
1 parent 66276f0 commit 7f0e04c

File tree

1 file changed

+83
-0
lines changed

1 file changed

+83
-0
lines changed

.gitignore

Lines changed: 83 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,83 @@
1+
# Ignore build artifacts
2+
.venv
3+
__pycache__
4+
*.pyc
5+
6+
# Ignore test results
7+
/tests/.pytest_cache
8+
/tests/__pycache__
9+
*.egg-info
10+
*.egg
11+
12+
# Ignore documentation files
13+
docs/
14+
/docs/
15+
/docs
16+
docs
17+
/docs/
18+
*.md
19+
*.rst
20+
/docs/
21+
/docs
22+
docs
23+
/docs
24+
*.tex
25+
*.pdf
26+
27+
# Ignore editor configuration files
28+
.idea/
29+
.vscode/
30+
.gitattributes
31+
32+
# Ignore logging files
33+
*.log
34+
/logs
35+
/logs/
36+
37+
# Ignore database files
38+
/db.sqlite3
39+
/db.sqlite
40+
41+
# Ignore migrations files
42+
/migrations
43+
44+
# Ignore unused files
45+
/commands.json
46+
/startup.sh
47+
/tests/test_services.py
48+
/tests/test_models.py
49+
/db/schemas/__init__.py
50+
/db/models/__init__.py
51+
/config/settings.py
52+
/core/services/openai_service.py
53+
/core/models/models.py
54+
/utils/logger.py
55+
56+
# Ignore deployment files
57+
/zappa_settings.json
58+
59+
# Ignore generated documentation files
60+
/dist
61+
/build
62+
/dist
63+
/build
64+
65+
# Ignore .pytest_cache
66+
/tests/.pytest_cache
67+
68+
# Ignore .pyc files
69+
*.pyc
70+
71+
# Ignore unused files
72+
/core/__init__.py
73+
/db/__init__.py
74+
/tests/__init__.py
75+
/utils/__init__.py
76+
77+
# Ignore other files
78+
/LICENSE
79+
/CONTRIBUTING.md
80+
/.github
81+
/README.md
82+
/.gitignore
83+
/package.json

0 commit comments

Comments
 (0)