Changes to gitignore
This commit is contained in:
54
.gitignore
vendored
54
.gitignore
vendored
@@ -1,28 +1,38 @@
|
|||||||
# Ignore Windows executables
|
# General
|
||||||
*.exe
|
__pycache__/
|
||||||
|
*.py[cod]
|
||||||
# Ignore Python bytecode
|
*$py.class
|
||||||
__pycache__
|
|
||||||
*.pyc
|
|
||||||
*.pyo
|
|
||||||
|
|
||||||
# Ignore virtual environment
|
|
||||||
venv
|
|
||||||
.env
|
|
||||||
|
|
||||||
# Ignore temporary files
|
|
||||||
*.tmp
|
|
||||||
*.log
|
|
||||||
*.swp
|
*.swp
|
||||||
*.swo
|
*.swo
|
||||||
|
*.tmp
|
||||||
|
*.log
|
||||||
|
.DS_Store
|
||||||
|
Thumbs.db
|
||||||
|
|
||||||
# Ignore build files
|
# Virtual Environment
|
||||||
|
venv/
|
||||||
|
.venv/
|
||||||
|
env/
|
||||||
|
.env
|
||||||
|
|
||||||
|
# Build and Distribution
|
||||||
build/
|
build/
|
||||||
dist/
|
dist/
|
||||||
.build
|
*.spec
|
||||||
.toc
|
# Exception: We want to keep our custom spec file
|
||||||
.zip
|
!UmamusumeCardManager.spec
|
||||||
.pkg
|
*.exe
|
||||||
.txt
|
*.zip
|
||||||
.html
|
*.pkg
|
||||||
|
|
||||||
|
# Database
|
||||||
|
# Ignore the running database, but keep the seed/template
|
||||||
|
database/*.db
|
||||||
|
!database/umamusume_seed.db
|
||||||
|
|
||||||
|
# VS Code
|
||||||
|
.vscode/
|
||||||
|
|
||||||
|
# Project Specific
|
||||||
|
# We are allowing .txt and .html now (removing previous blocks)
|
||||||
|
# If there are specific large generated files, add them here.
|
||||||
|
|||||||
Reference in New Issue
Block a user