Add gitignore file
This commit is contained in:
64
.gitignore
vendored
Normal file
64
.gitignore
vendored
Normal file
@@ -0,0 +1,64 @@
|
||||
# Python
|
||||
__pycache__/
|
||||
*.py[cod]
|
||||
*$py.class
|
||||
*.so
|
||||
.Python
|
||||
build/
|
||||
develop-eggs/
|
||||
dist/
|
||||
downloads/
|
||||
eggs/
|
||||
.eggs/
|
||||
lib/
|
||||
lib64/
|
||||
parts/
|
||||
sdist/
|
||||
var/
|
||||
wheels/
|
||||
*.egg-info/
|
||||
.installed.cfg
|
||||
*.egg
|
||||
|
||||
# Virtual Environment
|
||||
venv/
|
||||
ENV/
|
||||
env/
|
||||
|
||||
# IDE
|
||||
.vscode/
|
||||
.idea/
|
||||
*.swp
|
||||
*.swo
|
||||
*~
|
||||
|
||||
# Project specific
|
||||
logs/
|
||||
*.log
|
||||
videos/trailers/*.mp4
|
||||
videos/trailers/*.avi
|
||||
videos/trailers/*.mov
|
||||
videos/trailers/*.mkv
|
||||
videos/specific/*.mp4
|
||||
videos/specific/*.avi
|
||||
videos/specific/*.mov
|
||||
videos/specific/*.mkv
|
||||
videos/groupvideos/**/*.mp4
|
||||
videos/groupvideos/**/*.avi
|
||||
videos/groupvideos/**/*.mov
|
||||
videos/groupvideos/**/*.mkv
|
||||
videos/folder_state.json
|
||||
|
||||
# Keep directory structure
|
||||
!videos/trailers/.gitkeep
|
||||
!videos/specific/.gitkeep
|
||||
!videos/groupvideos/.gitkeep
|
||||
|
||||
# OS
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
desktop.ini
|
||||
|
||||
# Backup files
|
||||
*.bak
|
||||
*~
|
||||
Reference in New Issue
Block a user