Skip to content

Commit 87c099d

Browse files
Prepare to collaborate
1 parent fbc4b5f commit 87c099d

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.gitignore

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Python backend for club management
2+
__pycache__/
3+
*.py[cod] # Python compiled files
4+
*$py.class
5+
*.so
6+
.Python
7+
env/
8+
.env # Where database passwords are stored
9+
venv/ # Virtual environment for testing
10+
.venv
11+
12+
# Teacher IDE settings
13+
.vscode/ # Ms. Rodriguez uses VS Code
14+
.idea/ # Mr. Chen uses PyCharm
15+
16+
# Local development & testing
17+
instance/
18+
.pytest_cache/
19+
.coverage # Test coverage reports
20+
htmlcov/
21+
22+
# Staff computer files
23+
.DS_Store # For teachers with Macs
24+
Thumbs.db # For teachers with Windows

0 commit comments

Comments
 (0)