**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/
36 lines
1.2 KiB
Bash
36 lines
1.2 KiB
Bash
#
|
|
# Project config resolution for ia_dev scripts.
|
|
# Source this after setting PROJECT_ROOT and IA_DEV_ROOT.
|
|
# Resolves PROJECT_SLUG (id) and PROJECT_CONFIG_PATH (projects/<id>/conf.json).
|
|
#
|
|
# Project id resolution order:
|
|
# 1. IA_PROJECT (env)
|
|
# 2. .ia_project at PROJECT_ROOT (one line, slug)
|
|
# 3. ai_project_id at PROJECT_ROOT (one line, id = directory name in projects/)
|
|
#
|
|
# Config file: projects/<id>/conf.json (e.g. projects/lecoffreio/conf.json).
|
|
#
|
|
set -euo pipefail
|
|
|
|
PROJECT_SLUG=""
|
|
if [[ -n "${IA_PROJECT:-}" ]]; then
|
|
PROJECT_SLUG="$(echo "${IA_PROJECT}" | sed 's/[[:space:]]//g')"
|
|
fi
|
|
if [[ -z "$PROJECT_SLUG" && -n "${PROJECT_ROOT:-}" && -f "$PROJECT_ROOT/.ia_project" ]]; then
|
|
PROJECT_SLUG="$(cat "$PROJECT_ROOT/.ia_project" | sed 's/[[:space:]]//g')"
|
|
fi
|
|
if [[ -z "$PROJECT_SLUG" && -n "${PROJECT_ROOT:-}" && -f "$PROJECT_ROOT/ai_project_id" ]]; then
|
|
PROJECT_SLUG="$(cat "$PROJECT_ROOT/ai_project_id" | sed 's/[[:space:]]//g')"
|
|
fi
|
|
|
|
PROJECT_CONFIG_PATH=""
|
|
if [[ -n "$PROJECT_SLUG" && -n "${IA_DEV_ROOT:-}" ]]; then
|
|
PROJECT_CONFIG_PATH="${IA_DEV_ROOT}/projects/${PROJECT_SLUG}/conf.json"
|
|
if [[ ! -f "$PROJECT_CONFIG_PATH" ]]; then
|
|
PROJECT_CONFIG_PATH=""
|
|
fi
|
|
fi
|
|
|
|
export PROJECT_SLUG
|
|
export PROJECT_CONFIG_PATH
|