增加git ignore文件,增加settings.py作为忽略
增加pyc类型的文件
This commit is contained in:
27
.gitignore
vendored
Normal file
27
.gitignore
vendored
Normal file
@@ -0,0 +1,27 @@
|
||||
# Django settings
|
||||
statuspage/settings.py
|
||||
|
||||
# Python cache
|
||||
__pycache__/
|
||||
*.py[cod]
|
||||
*$py.class
|
||||
|
||||
# Database
|
||||
db.sqlite3
|
||||
|
||||
# Logs
|
||||
*.log
|
||||
|
||||
# Local development settings
|
||||
local_settings.py
|
||||
.env
|
||||
|
||||
# IDE
|
||||
.idea/
|
||||
.vscode/
|
||||
*.swp
|
||||
*.swo
|
||||
|
||||
# OS
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
Reference in New Issue
Block a user