feat: add .gitignore and apps/template for new apps
This commit is contained in:
30
.gitignore
vendored
Normal file
30
.gitignore
vendored
Normal file
@@ -0,0 +1,30 @@
|
||||
# 備份檔案(太大且不應進版控)
|
||||
**/backup/
|
||||
**/backups/
|
||||
**/*.sql
|
||||
**/*.sql.gz
|
||||
**/*.tar.gz
|
||||
**/*.dump
|
||||
|
||||
# 暫存目錄
|
||||
**/tmpdir/
|
||||
**/tmp/
|
||||
**/*.tmp
|
||||
|
||||
# K8s 產生的檔案
|
||||
**/.kubectl*
|
||||
**/kubeconfig*
|
||||
|
||||
# 編輯器
|
||||
*.swp
|
||||
*.swo
|
||||
*~
|
||||
.idea/
|
||||
.vscode/
|
||||
|
||||
# 作業系統
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
|
||||
# 日誌
|
||||
**/*.log
|
||||
Reference in New Issue
Block a user