chore: merge console repository into monorepo#262
Merged
Conversation
git-subtree-dir: console git-subtree-split: aff3ec54d0c200fde4906042fe8708c6db770e40
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Merges the cluster-iq-console repository into this repo under
console/, creating a unified monorepo for all ClusterIQ components (API, Scanner, Agent, Console, Database).Motivation: Both repos share the same release cycle, versioning, and CI pipeline. Maintaining them separately created double bureaucracy (PRs, CI, changelogs, releases) with no real benefit.
Changes
Repository structure
git subtreeintoconsole/.github/,.husky/,.gitignore, compose files.editorconfigto root (covers both Go and TypeScript).nvmrc(Node 18) for version pinningMakefile unification
console-*targets that delegate toconsole/Makefilebuildaggregate target includesbuild-consolecleantarget covers all images including consoleCI unification
validate-pr.yaml: addedconsole-lintjob (prettier + eslint + tsc) in parallel with Go lintingbuild-container-images.yaml: addedconsoleimage build job alongside api/agent/scannerconsole/.github/workflows/(superseded by root workflows)Compose integration
consoleservice to rootdeployments/compose/compose-devel.yaml(port 8080)console/deployments/compose/(superseded)Documentation
README.md: replaced external console link with monorepo Console sectionCLAUDE.md: added console to architecture, repo structure, and essential commandsdoc/developers/development-setup.md: rewritten for single-repo workflowdoc/developers/publish-new-release-checklist.md: added console lint and version stepsconsole/README.md: added monorepo note, updated quick-startCleanup
console/package.json: removedhusky/lint-staged, aligned version to0.5.0console/package-lock.json: regeneratedconsole/src/app/constants.ts: updatedREPOSITORY_URLto monorepoTest plan
make console-lintpasses (prettier + eslint + tsc)make helpshows allconsole-*targetsConsole Lintjob passesGo Linterjob passesmake build-consolebuilds container image successfullymake start-devstarts all services including console on port 8080