Skip to content

drdreo/hub

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Apr 2, 2025
95e9ae8 · Apr 2, 2025
Mar 18, 2025
Mar 13, 2025
Apr 1, 2025
Mar 13, 2025
Mar 13, 2025
Mar 4, 2025
Mar 2, 2025
Mar 13, 2025
Mar 2, 2025
Mar 13, 2025
Mar 13, 2025
Mar 19, 2025
Mar 19, 2025
Mar 4, 2025
Mar 4, 2025
Mar 13, 2025
Apr 2, 2025
Apr 2, 2025
Mar 26, 2025
Mar 13, 2025
Mar 13, 2025
Mar 2, 2025

Repository files navigation

Hub

✨ Your new, shiny Nx workspace is almost ready ✨.

Learn more about this workspace setup and its capabilities or run npx nx graph to visually explore what was created. Now, let's get you up to speed!

Folder Structure

libs/
├── tell-it/
│   ├── web/                # Angular-specific libraries
│   │   ├── feature/        # Angular feature libraries
│   │   ├── ui/             # Angular UI components
│   │   └── data-access/    # Angular services
│   ├── api/                # NestJS-specific libraries
│   │   ├── feature/        # NestJS feature modules
│   │   └── data-access/    # NestJS services, repositories
│   └── shared/             # Shared between web and api
│       ├── models/         # Shared interfaces/types
│       └── util/           # Shared utilities
├── shared/                 # Cross-domain shared code

To run any task with Nx use:

npx nx <target> <project-name>

These targets are either inferred automatically or defined in the project.json or package.json files.

More about running tasks in the docs »

Deploying

To deploy an application:

nx deploy

For APIs, dockerfiles are used to generate docker images. Make sure to correctly setup the registry to allow the repo to push images. Manage package settings > Choose repo > Role: Admin

Learn more about Nx release »

Keep TypeScript project references up to date

Nx automatically updates TypeScript project references in tsconfig.json files to ensure they remain accurate based on your project dependencies (import or require statements). This sync is automatically done when running tasks such as build or typecheck, which require updated references to function correctly.

To manually trigger the process to sync the project graph dependencies information to the TypeScript project references, run the following command:

npx nx sync

You can enforce that the TypeScript project references are always in the correct state when running in CI by adding a step to your CI job configuration that runs the following command:

npx nx sync:check

Learn more about nx sync