-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
73 lines (60 loc) · 1.15 KB
/
.gitignore
File metadata and controls
73 lines (60 loc) · 1.15 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# ========== 系统文件 ==========
.DS_Store
Thumbs.db
*.swp
*.swo
*~
.idea/
.vscode/
*.code-workspace
# ========== 环境配置文件(敏感信息)==========
web/config/env.php
web/config/database.php
web/config/config.php
# ========== 上传和用户数据 ==========
web/uploads/*
!web/uploads/.gitkeep
!web/uploads/README.md
# ========== 数据库备份 ==========
*.sql
!database/schema.sql
web/backups/*
backup_*.sql
# ========== 日志和缓存 ==========
web/logs/*
!web/logs/.gitkeep
web/cache/*
!web/cache/.gitkeep
# ========== Composer ==========
web/vendor/
composer.phar
composer.lock
# ========== 临时文件 ==========
*.tmp
*.bak
*.log
*.pid
web/.user.ini
# ========== SSL证书验证 ==========
web/.well-known/
# ========== 测试和调试文件 ==========
web/test_*.php
web/debug_*.php
web/phpinfo.php
web/*_temp.php
# ========== ESP32编译输出 ==========
esp32/**/*.bin
esp32/**/*.elf
esp32/**/*.map
esp32/**/build/
# ========== Node.js(如果使用)==========
node_modules/
package-lock.json
# ========== Python(如果使用)==========
__pycache__/
*.pyc
*.pyo
*.egg-info/
# ========== Git ==========
.git/
.gitattributes