Aligner le dépôt Reader sur le modèle MS1 (gitignore, règles Cursor, deploy_dev).

Retire .env et les artefacts writable du tracking; versionne deploy_dev.php pour survivre à git clean -fd.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-07-19 10:21:52 -04:00
parent 2ecc1c84b8
commit ea49f2c94f
32 changed files with 203 additions and 427 deletions

38
.gitignore vendored Normal file
View File

@ -0,0 +1,38 @@
# Secrets / env local
ci4app/.env
.env
.env.*
!.env.example
!ci4app/.env.example
# IDE — ne jamais committer les connexions SQL (copier settings.json.example)
.vscode/settings.json
.idea/
# OS
.DS_Store
Thumbs.db
# Logs
*.log
error_log
**/error_log
# CI4 runtime
ci4app/writable/cache/*
!ci4app/writable/cache/index.html
ci4app/writable/logs/*
!ci4app/writable/logs/index.html
ci4app/writable/session/*
!ci4app/writable/session/index.html
ci4app/writable/uploads/*
!ci4app/writable/uploads/index.html
ci4app/writable/debugbar/
ci4app/writable/*.json
# Composer (si vendor est installé localement)
ci4app/vendor/
# Node
node_modules/
dist/