Wiki/.gitignore
Corentin JOGUET 1d71364c6e
Some checks are pending
CI / Lint bridge (Biome) (push) Waiting to run
CI / Type-check bridge (push) Blocked by required conditions
CI / Tests unit bridge (push) Blocked by required conditions
CI / Tests integration bridge (push) Blocked by required conditions
CI / Security scan (push) Waiting to run
CI / Docker build + healthcheck (push) Blocked by required conditions
feat(seed): add I4 forms publics + space etudiant + I5 healthcheck etendu
I4 — Forms publics + space etudiant :
- baserow/seed/seed_forms.py : cree forms publics sur attribution + intervention
  (saisie heures via lien sans compte). Form cree OK, field-options endpoint
  retourne 404 sur Baserow 1.30 — a investiguer (URL different selon version).
- docmost/setup/create-space-etudiant.py : cree space prive + invite etudiant
  + page Welcome template. Slug strict lettres+chiffres only (fix Docmost).

I5 — Ops :
- scripts/healthcheck.sh : check UI + API health (Docmost+Baserow), affiche
  status containers Docker. 4/4 OK en local.
- scripts/cron-install.sh : installe cron quotidien backup + healthcheck */5min.

Makefile : targets seed-baserow-forms, create-space-etudiant. Tous les targets
utilisent maintenant .venv/ local pour eviter pip systeme.

.gitignore : exclut .venv/ + __pycache__/.
2026-05-07 18:49:00 +02:00

54 lines
456 B
Text

# Secrets
.env
.env.local
.env.*.local
.env.staging
.env.prod
*.pem
*.key
# Backups
backups/
*.sql.gz
*.tar.gz
# Python venv
.venv/
__pycache__/
# Node
node_modules/
dist/
build/
.next/
.turbo/
.vitest/
coverage/
.nyc_output/
# Logs
*.log
logs/
*.pid
# OS
.DS_Store
Thumbs.db
*~
# Editors
.idea/
.vscode/*
!.vscode/extensions.json
!.vscode/settings.json.example
# Python (si seed scripts)
__pycache__/
*.pyc
.venv/
venv/
# Misc
.cache/
*.tmp
*.swp