Project Restructuring to Monorepo Style#12
Merged
n3-rd merged 3 commits inton3-rd:mainfrom Jan 21, 2026
Merged
Conversation
- Move dashboard to apps/dashboard and docs to apps/docs - Relocate core logic to core/api and core/cli - Update Dockerfile and entrypoint.sh for new structure - Implement centralized tests/ directory (Shell & API) - Export API server for integration testing - Update README.md with project structure
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.
Restructure project into monorepo-style layout
Refactors the project structure to be more scalable and meaningful as we grow. It adopts a monorepo-style layout separating applications and core logic.
Key Changes:
apps/: Contains user-facing applications.dashboard/: SvelteKit dashboard (moved fromsrc/dashboard).docs/: Documentation files (moved fromsrc/docs).web/: Placeholder for future landing page.core/: Contains core business logic and infrastructure.api/: Node.js API server (moved from rootapi-server.js).cli/: Shell scripts management tools (moved fromscripts/).entrypoint.sh: Main container entrypoint.entrypoint.shto work with the new paths and structure.tests/directory with shell and API integration tests.Motivation
As the project expands, a monorepo-style structure and a robust testing framework are essential for maintainability and stability. This separation allows for clearer boundaries between infrastructure, applications, and verification logic.