-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitignore
More file actions
127 lines (112 loc) · 1.41 KB
/
.gitignore
File metadata and controls
127 lines (112 loc) · 1.41 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
# ========================
# PROTIUM GITIGNORE
# ========================
# ===== 通用忽略 =====
.DS_Store
._*
Thumbs.db
*.log
*.tmp
*.bak
*.swp
# ===== 系统文件 =====
# Windows
[Tt]humbs.db
Desktop.ini
*.lnk
# macOS
*.DS_Store
.AppleDouble
.LSOverride
# ===== Python 项目 =====
# Django 相关
__pycache__/
*.py[cod]
*.pyo
*.pyd
*.py.class
*.py.orig
*.pyc.stale
*.egg-info/
*.sqlite3
venv/
.python-version
celerybeat-schedule
**/media/
**/static/
# ===== Node.js 项目 =====
node_modules/
.npm
.eslintcache
.next/
out/
dist/
.serverless/
.next-server/
.nuxt/
.cache/
.vscode/
# ===== Next.js 项目 =====
next-env.d.ts
# ===== 开发环境配置 =====
**.env.*
.env
!.env.example
# ===== 包管理器 =====
package-lock.json
pnpm-lock.yaml
yarn-error.log
.pnp.*
.pnp.js
.yarn-integrity
.yarn/cache/
.yarn/unplugged/
.yarn/install-state.gz
.yarn/versions/
# ===== 构建产物 =====
build/
**/tsconfig.tsbuildinfo
public/static/
public/build/
.next/
out/
dist/
*.dll
*.exe
*.bin
*.app
*.dmg
# ===== 编辑器配置 =====
.idea/
.vscode/
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
# ===== 数据库文件 =====
*.db
*.sqlite
*.sql
/db.sqlite3
# ===== 测试相关 =====
coverage/
.nyc_output/
*.lcov
/test-reports/
.temp/
# ===== 容器化配置 =====
docker-compose.yml
docker-compose.override.yml
/helm/
# ===== 证书文件 =====
*.certs/
*.pem
*.crt
*.key
*.cer
*.pfx
# ===== 特殊文件 =====
!.gitkeep
!.keep
!.placeholder