gitignore first
This commit is contained in:
commit
90585b4eae
1 changed files with 23 additions and 0 deletions
23
.gitignore
vendored
Normal file
23
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,23 @@
|
||||||
|
# --- Secrets / lokale Konfiguration ---
|
||||||
|
.env
|
||||||
|
|
||||||
|
# --- Datenbank / Instanz (nicht versionieren) ---
|
||||||
|
instance/*.sqlite
|
||||||
|
instance/*.db
|
||||||
|
|
||||||
|
# --- Python ---
|
||||||
|
__pycache__/
|
||||||
|
*.py[cod]
|
||||||
|
*.egg-info/
|
||||||
|
.venv/
|
||||||
|
venv/
|
||||||
|
env/
|
||||||
|
|
||||||
|
# Lokaler pyenv-Env-Name (maschinenspezifisch, existiert nicht auf dem VPS)
|
||||||
|
.python-version
|
||||||
|
|
||||||
|
# --- Tooling / OS ---
|
||||||
|
.pytest_cache/
|
||||||
|
.mypy_cache/
|
||||||
|
.ruff_cache/
|
||||||
|
.DS_Store
|
||||||
Loading…
Add table
Reference in a new issue