A brief description of the project.
This project is a monorepo containing two main applications:
apps/api: The backend API application (likely built with NestJS based on file names).apps/client: The frontend client application (likely built with React/Vite based on file names).
.
├── apps/
│ ├── api/
│ └── client/
├── .gitignore
├── .prettierignore
├── .prettierrc
├── eslint.config.cjs
├── package.json
└── yarn.lock
To set up the project, clone the repository and install dependencies using Yarn:
git clone <repository_url>
cd <project_directory>
yarn installTo run the API application:
cd apps/api
yarn startTo run the client application:
cd apps/client
yarn devInstructions on how to contribute to the project.
Information about the project's license.