mirror of
https://github.com/tcsenpai/youlama.git
synced 2025-06-04 02:10:21 +00:00
57 lines
442 B
Plaintext
57 lines
442 B
Plaintext
# Version control
|
|
.git
|
|
.gitignore
|
|
.gitattributes
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
.env
|
|
.venv
|
|
env/
|
|
venv/
|
|
ENV/
|
|
env.bak/
|
|
venv.bak/
|
|
.python-version
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Docker
|
|
Dockerfile
|
|
docker-compose.yml
|
|
.dockerignore
|
|
|
|
# Project specific
|
|
models/
|
|
*.log
|
|
*.mp3
|
|
*.wav
|
|
*.mp4
|
|
*.avi
|
|
*.mkv
|
|
*.mov
|
|
*.flac
|
|
*.ogg
|
|
*.m4a
|
|
*.aac
|
|
|
|
# Documentation
|
|
README.md
|
|
LICENSE
|
|
*.md
|
|
docs/
|
|
|
|
# Test files
|
|
tests/
|
|
test/
|
|
*.test
|
|
*.spec |