Spaces:
Sleeping
Sleeping
Youngger9765
Claude
commited on
Commit
·
b514fa5
1
Parent(s):
593758b
Add .gitignore for Python Flask project
Browse filesIncludes exclusions for:
- Python bytecode and build artifacts
- Virtual environments
- Flask-specific files
- IDE and OS files
- Docker and database files
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <[email protected]>
- .gitignore +87 -0
.gitignore
ADDED
@@ -0,0 +1,87 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Byte-compiled / optimized / DLL files
|
2 |
+
__pycache__/
|
3 |
+
*.py[cod]
|
4 |
+
*$py.class
|
5 |
+
|
6 |
+
# C extensions
|
7 |
+
*.so
|
8 |
+
|
9 |
+
# Distribution / packaging
|
10 |
+
.Python
|
11 |
+
build/
|
12 |
+
develop-eggs/
|
13 |
+
dist/
|
14 |
+
downloads/
|
15 |
+
eggs/
|
16 |
+
.eggs/
|
17 |
+
lib/
|
18 |
+
lib64/
|
19 |
+
parts/
|
20 |
+
sdist/
|
21 |
+
var/
|
22 |
+
wheels/
|
23 |
+
share/python-wheels/
|
24 |
+
*.egg-info/
|
25 |
+
.installed.cfg
|
26 |
+
*.egg
|
27 |
+
MANIFEST
|
28 |
+
|
29 |
+
# PyInstaller
|
30 |
+
*.manifest
|
31 |
+
*.spec
|
32 |
+
|
33 |
+
# Installer logs
|
34 |
+
pip-log.txt
|
35 |
+
pip-delete-this-directory.txt
|
36 |
+
|
37 |
+
# Unit test / coverage reports
|
38 |
+
htmlcov/
|
39 |
+
.tox/
|
40 |
+
.nox/
|
41 |
+
.coverage
|
42 |
+
.coverage.*
|
43 |
+
.cache
|
44 |
+
nosetests.xml
|
45 |
+
coverage.xml
|
46 |
+
*.cover
|
47 |
+
*.py,cover
|
48 |
+
.hypothesis/
|
49 |
+
.pytest_cache/
|
50 |
+
cover/
|
51 |
+
|
52 |
+
# Flask stuff:
|
53 |
+
instance/
|
54 |
+
.webassets-cache
|
55 |
+
|
56 |
+
# Environments
|
57 |
+
.env
|
58 |
+
.venv
|
59 |
+
env/
|
60 |
+
venv/
|
61 |
+
ENV/
|
62 |
+
env.bak/
|
63 |
+
venv.bak/
|
64 |
+
|
65 |
+
# IDEs
|
66 |
+
.vscode/
|
67 |
+
.idea/
|
68 |
+
*.swp
|
69 |
+
*.swo
|
70 |
+
*~
|
71 |
+
|
72 |
+
# OS
|
73 |
+
.DS_Store
|
74 |
+
.DS_Store?
|
75 |
+
._*
|
76 |
+
.Spotlight-V100
|
77 |
+
.Trashes
|
78 |
+
ehthumbs.db
|
79 |
+
Thumbs.db
|
80 |
+
|
81 |
+
# Docker
|
82 |
+
.dockerignore
|
83 |
+
|
84 |
+
# Project specific
|
85 |
+
*.log
|
86 |
+
*.sqlite
|
87 |
+
*.db
|