-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
64 lines (55 loc) · 796 Bytes
/
.gitignore
File metadata and controls
64 lines (55 loc) · 796 Bytes
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
59
60
61
62
63
64
# Node.js dependencies (if using Express.js)
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# Python dependencies (if using Flask)
__pycache__/
*.pyc
*.pyo
*.pyd
venv/
.env
# Docker-related files
docker-compose.override.yml
*.dockerfile
docker-data/
docker-cache/
.dockerignore
# Logs and runtime files
logs/
*.log
*.out
*.err
*.pid
*.seed
*.lock
# NGINX related files (optional)
nginx/cache/
nginx/logs/
# IDE and editor files
.vscode/
.idea/
*.swp
*.swo
*.bak
*.tmp
.DS_Store
# System-specific files
Thumbs.db
desktop.ini
# Secrets and credentials (make sure not to commit API keys!)
.env
*.pem
*.crt
*.key
# Generated files and build artifacts
dist/
build/
*.tar.gz
*.zip
# Database files (if using SQLite for session management)
*.sqlite
*.sqlite3
db.sqlite
db.sqlite3