ia_dev/lib/README.md
Nicolas Cantu 907807f4d6 Generic project config, deploy scripts, gitea-issues, no reverse dependency
**Motivations:**
- Single config file per project (projects/<id>/conf.json)
- Project must not depend on ia_dev; only ia_dev solicits the project

**Root causes:**
- N/A (evolution)

**Correctifs:**
- N/A

**Evolutions:**
- lib/project_config.sh: resolve PROJECT_SLUG from IA_PROJECT, .ia_project, ai_project_id; PROJECT_CONFIG_PATH = projects/<id>/conf.json
- projects/lecoffreio.json moved to projects/lecoffreio/conf.json; projects/ia_dev/conf.json added
- deploy: branch-align, bump-version, change-to-all-branches, pousse, deploy-by-script-to use PROJECT_ROOT/IA_DEV_ROOT and project_config.sh; SCRIPT_REAL for symlink-safe paths
- deploy/_lib: shared colors, env-map, ssh, git-flow
- gitea-issues: mail list/mark-read/get-thread/send-reply, thread log, agent-loop, wiki scripts; lib.sh loads project config
- README: principle no dependency from host project; invoke ./ia_dev/deploy/bump-version.sh etc. from repo root

**Pages affectées:**
- README.md, projects/README.md, lib/, deploy/, gitea-issues/, projects/lecoffreio/, projects/ia_dev/
2026-03-12 22:35:15 +01:00

611 B

ia_dev shared lib

project_config.sh

Sourced by deploy scripts and gitea-issues to resolve the current project id and the path to its JSON config.

Before sourcing: set PROJECT_ROOT (git repo root, where ai_project_id or .ia_project lives) and IA_DEV_ROOT (path to the ia_dev directory).

After sourcing: PROJECT_SLUG and PROJECT_CONFIG_PATH are set (and exported). Config path is projects/<id>/conf.json.

Project id resolution order: IA_PROJECT env → .ia_project at PROJECT_ROOT → ai_project_id at PROJECT_ROOT.

See projects/README.md for the config schema.