-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitignore
More file actions
101 lines (85 loc) · 1.17 KB
/
.gitignore
File metadata and controls
101 lines (85 loc) · 1.17 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
# 数据库文件
data/
*.db
*.sqlite
*.sqlite3
# 日志文件
logs/
*.log
docs/*.md
docs/mynote
docs/api-modules
docs/quality
docs/security
docs/web-needed-api
# 编译后的二进制文件
bin/
/main
#/paneld 放到文件底部统一管理
*.exe
# Go语言相关
*.test
*.prof
coverage.out
*.out
# IDE相关文件
.idea/
.vscode/
*.swp
*.swo
*~
# 操作系统相关
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
# 临时文件和缓存
*.tmp
*.temp
.cache/
.history
.VSCodeCounter
# 环境变量文件
.env
.env.local
.env.*.local
# Node.js相关(前端项目)
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
.pnpm-debug.log*
# 前端构建产物
dist/*
build/
.nuxt/
.next/
.vercel/
.netlify/
# 前端开发工具
.vite/
*.tsbuildinfo
# 测试覆盖率
coverage/
*.lcov
# 调试文件
debug_config.go
# 版本管理工具
.tool-versions
# 备份文件
*.bak
*.backup
*~
# 其他临时文件
*.pid
*.seed
*.pid.lock
# 仅忽略仓库根目录下的可执行文件,不忽略源码目录(例如 cmd/paneld)
/runpanel
/paneld
# 如需强制包含源码目录(即使上面规则变化),可取消注释:
#!cmd/paneld/