Add .gitignore
This commit is contained in:
commit
44fb27801d
|
|
@ -0,0 +1,26 @@
|
|||
__pycache__/
|
||||
*.py[cod]
|
||||
*.egg-info/
|
||||
dist/
|
||||
build/
|
||||
|
||||
# Umgebung
|
||||
.env
|
||||
!.env.example
|
||||
|
||||
# Daten und Konfiguration (enthalten Passwörter)
|
||||
data/
|
||||
config/
|
||||
|
||||
# Virtual Environment
|
||||
.venv/
|
||||
venv/
|
||||
|
||||
# IDE
|
||||
.idea/
|
||||
.vscode/
|
||||
*.swp
|
||||
*.swo
|
||||
|
||||
# pytest
|
||||
.pytest_cache/
|
||||
Loading…
Reference in New Issue