This repository uses an Nx Monorepo setup, feel free to add you frontend inside this repository or create a separate repository.
You have Node.js installed on your machine and ran:
npm installTo run the backend, you can use this command
npx nx dev apiOnce it's running, you can check out the api specs at http://localhost:3000/docs
You can use the Nx Docs to add your frontend to this repository. For example, to add Remix, run this:
npx nx add @nx/remix
npx nx g @nx/remix:app apps/webAfter installation, you can run the web application using:
npx nx dev web