Skip to content

Commit

Permalink
refactor: Separate libraries from app code
Browse files Browse the repository at this point in the history
  • Loading branch information
ochairo committed Mar 28, 2024
1 parent 0804118 commit 6500404
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,13 +58,10 @@ This ensures that the application will be easy to maintain, scale, modify and en
│ │ │ ├── presentation # - Presentation components for the feature
│ │ │ └── [feature].module.ts # - Module file for the feature
│ │ │
│ │ ├── infrastructure # Infrastructure
│ │ │ ├── adapters # - Adapters for external services
│ │ │ │ └── auth # - Adapter for external auth services
│ │ │ ├── http # - HTTP-related code
│ │ │ ├── router # - Router code for handling routing
│ │ │ ├── styles # - Stylesheets for styling the application
│ │ │ └── ui-components # - UI components
│ │ ├── adapters # Adapters for external services
│ │ │ ├── auth # - Adapt Auth service
│ │ │ ├── http # - Adapt HTTP Client
│ │ │ └── ui # - Adapt UI component library
│ │ │ ├── atoms # - Basic UI elements
│ │ │ ├── molecules # - Simple UI components
│ │ │ └── organisms # - Complex UI components
Expand All @@ -73,6 +70,11 @@ This ensures that the application will be easy to maintain, scale, modify and en
│ │ ├── main.ts # Bootstrapping
│ │ └── routes.ts # Routing configuration
│ │
│ ├── packages # Implementation of NPM Libraries
│ │ ├── vanillatte-http # - HTTP Client
│ │ ├── vanillatte-router # - Router
│ │ └── vanillatte-ui # - UI components
│ │
│ ├── mock # Mock
│ │ ├── data # - Mock data stored in JSON files
│ │ └── server # - Mock API server utilizing the mock data
Expand Down
Empty file.
Empty file.
Empty file.

0 comments on commit 6500404

Please sign in to comment.