From a1247b3941a283589ab26d04475d9eb0f76d838b Mon Sep 17 00:00:00 2001 From: Gabor Szabo Date: Mon, 18 May 2026 10:08:40 +0200 Subject: [PATCH] docs(repo): fix readme dev-deps command and stale .github template placeholders (#140) --- .github/CODEOWNERS | 17 ++++++++--------- .github/ISSUE_TEMPLATE/config.yml | 2 +- README.md | 2 +- 3 files changed, 10 insertions(+), 11 deletions(-) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 0a273e3b..9c7700f5 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -2,26 +2,25 @@ # These owners will be requested for review when PRs touch their areas # # Format: path @username or @org/team -# Note: Replace placeholder usernames with actual GitHub usernames # Default owners for everything -* @your-username +* @w7-mgfcode # Core infrastructure -/app/core/ @your-username +/app/core/ @w7-mgfcode # Feature modules (add specific owners as team grows) -/app/features/ @your-username +/app/features/ @w7-mgfcode # CI/CD configuration -/.github/ @your-username +/.github/ @w7-mgfcode # Database migrations -/alembic/ @your-username +/alembic/ @w7-mgfcode # Documentation -/docs/ @your-username +/docs/ @w7-mgfcode # Configuration files -/pyproject.toml @your-username -/docker-compose.yml @your-username +/pyproject.toml @w7-mgfcode +/docker-compose.yml @w7-mgfcode diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index a9d99da7..a4784d78 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -1,5 +1,5 @@ blank_issues_enabled: true contact_links: - name: Documentation - url: https://github.com/your-org/ForecastLabAI/tree/main/docs + url: https://github.com/w7-mgfcode/ForecastLabAI/tree/main/docs about: Check the documentation before opening an issue diff --git a/README.md b/README.md index c30a970d..c27e3676 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,7 @@ docker-compose up -d 3. **Install dependencies** ```bash -uv sync +uv sync --extra dev # or: pip install -e ".[dev]" ```