38 lines
302 B
Plaintext
38 lines
302 B
Plaintext
|
|
# Git
|
||
|
|
.git
|
||
|
|
.gitignore
|
||
|
|
|
||
|
|
# Python
|
||
|
|
__pycache__
|
||
|
|
*.pyc
|
||
|
|
*.pyo
|
||
|
|
*.pyd
|
||
|
|
.Python
|
||
|
|
*.so
|
||
|
|
*.egg
|
||
|
|
*.egg-info
|
||
|
|
dist
|
||
|
|
build
|
||
|
|
.venv
|
||
|
|
venv
|
||
|
|
env
|
||
|
|
|
||
|
|
# IDE
|
||
|
|
.vscode
|
||
|
|
.idea
|
||
|
|
*.swp
|
||
|
|
*.swo
|
||
|
|
|
||
|
|
# Documentation
|
||
|
|
README.md
|
||
|
|
*.md
|
||
|
|
|
||
|
|
# Config (user should provide their own)
|
||
|
|
config.yaml
|
||
|
|
|
||
|
|
# Docs (user should mount their own)
|
||
|
|
docs/*.txt
|
||
|
|
|
||
|
|
# CI/CD
|
||
|
|
.gitea
|