-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
58 lines (48 loc) · 1.02 KB
/
.gitignore
File metadata and controls
58 lines (48 loc) · 1.02 KB
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
# Global ignores
.DS_Store
.env
.env.*
.vscode/
# OS generated files
Thumbs.db
Desktop.ini
# -------------------------
# Python specific ignores (for /server)
# -------------------------
server/__pycache__/
server/*.pyc
server/.pytest_cache/
server/venv/
server/.python-version
server/db.sqlite3
server/static/
server/migrations/
!server/migrations/__init__.py
server/chess_app/__pycache__
server/chess_app/migrations/__pycache__
server/kingsgambit_backend/__pycache__
# Django specific
server/manage.pyc
# -------------------------
# Node/React specific ignores (for /client)
# -------------------------
client/node_modules/
client/.vite/
client/dist/
client/build/
client/pnpm-lock.yaml
# Log files
client/*.log
client/npm-debug.log*
client/yarn-debug.log*
client/yarn-error.log*
# -------------------------
# Docker specific ignores
# -------------------------
docker-compose.override.yml
.dockerignore
# -------------------------
# Other generated files
# -------------------------
*.log
*.sqlite3