add some files
Some checks failed
Build, Push & Deploy / Build & Push image (push) Failing after 2m43s
Build, Push & Deploy / Deploy naar VPS (push) Has been skipped

This commit is contained in:
2026-02-28 00:04:12 +01:00
parent 6295c58d33
commit 0060681fe5
3 changed files with 178 additions and 0 deletions

44
.gitignore vendored Normal file
View File

@@ -0,0 +1,44 @@
# ── Omgevingsbestanden (NOOIT committen!) ────────────────────────────────────
.env
.env.local
.env.*.local
# ── Python ────────────────────────────────────────────────────────────────────
__pycache__/
*.py[cod]
*.pyo
*.pyd
.Python
*.egg-info/
dist/
build/
.venv/
venv/
env/
# ── Leerdoelen JSON bestanden ─────────────────────────────────────────────────
# Deze zijn groot (22 MB) en worden beheerd via de upload UI, niet via git.
# Bewaar enkel de lege mapstructuur.
doelen/*.json
!doelen/.gitkeep
# ── Database ──────────────────────────────────────────────────────────────────
*.sqlite3
*.db
postgres_data/
# ── Logs ──────────────────────────────────────────────────────────────────────
*.log
logs/
# ── Docker ────────────────────────────────────────────────────────────────────
docker-compose.override.yml
docker-compose.local.yml
# ── Editor / OS ───────────────────────────────────────────────────────────────
.vscode/
.idea/
*.swp
*.swo
.DS_Store
Thumbs.db