A web app with tooling to augment data with AI.
- Docker
- Turbo
- RS Build
- Module Federation
- TypeScript
- React
- Next.js
- Perplexity
- Apps
- Packages
- Shell
/augment-it/
├── apps/ # Microfrontend applications
│ ├── record-collector/
│ ├── prompt-manager/
│ ├── request-reviewer/
│ ├── response-reviewer/
│ ├── highlight-collector/
│ └── insight-manager/
├── packages/ # Shared code
│ ├── shared/ # Shared utilities and types
│ ├── ui/ # Shared UI components
│ └── config/ # Shared configurations
├── shell/ # Main shell application
│ ├── src/
│ ├── rsbuild.config.mjs
│ └── package.json
├── package.json # Root package.json
└── rsbuild.config.mjs # Root RS Build config
Install the dependencies:
pnpm install
Start the dev server, and the app will be available at http://localhost:3000.
pnpm dev
Build the app for production:
pnpm build
Preview the production build locally:
pnpm preview
To learn more about Rsbuild, check out the following resources:
- Rsbuild documentation - explore Rsbuild features and APIs.
- Rsbuild GitHub repository - your feedback and contributions are welcome!