refactor: update README and document schema for improved clarity and functionality
- Revised README.md to provide a clearer project overview, installation instructions, and service descriptions, enhancing onboarding for new developers. - Removed unnecessary comments in document.schema.ts to streamline the code and improve readability. - Updated the LiveKit service descriptions in the README to reflect the integration of new functionalities and services.
This commit is contained in:
131
README.md
131
README.md
@@ -1,85 +1,98 @@
|
|||||||
<p align="center">
|
# Project Name
|
||||||
<a href="http://nestjs.com/" target="blank"><img src="https://nestjs.com/img/logo-small.svg" width="120" alt="Nest Logo" /></a>
|
|
||||||
</p>
|
|
||||||
|
|
||||||
[circleci-image]: https://img.shields.io/circleci/build/github/nestjs/nest/master?token=abc123def456
|
## Overview
|
||||||
[circleci-url]: https://circleci.com/gh/nestjs/nest
|
|
||||||
|
|
||||||
<p align="center">A progressive <a href="http://nodejs.org" target="_blank">Node.js</a> framework for building efficient and scalable server-side applications.</p>
|
This project is built using NestJS and LiveKit server SDK to manage video collaboration sessions, scheduling, and user services. It utilizes Prisma as an ORM for database interactions.
|
||||||
<p align="center">
|
|
||||||
<a href="https://www.npmjs.com/~nestjscore" target="_blank"><img src="https://img.shields.io/npm/v/@nestjs/core.svg" alt="NPM Version" /></a>
|
|
||||||
<a href="https://www.npmjs.com/~nestjscore" target="_blank"><img src="https://img.shields.io/npm/l/@nestjs/core.svg" alt="Package License" /></a>
|
|
||||||
<a href="https://www.npmjs.com/~nestjscore" target="_blank"><img src="https://img.shields.io/npm/dm/@nestjs/common.svg" alt="NPM Downloads" /></a>
|
|
||||||
<a href="https://circleci.com/gh/nestjs/nest" target="_blank"><img src="https://img.shields.io/circleci/build/github/nestjs/nest/master" alt="CircleCI" /></a>
|
|
||||||
<a href="https://coveralls.io/github/nestjs/nest?branch=master" target="_blank"><img src="https://coveralls.io/repos/github/nestjs/nest/badge.svg?branch=master#9" alt="Coverage" /></a>
|
|
||||||
<a href="https://discord.gg/G7Qnnhy" target="_blank"><img src="https://img.shields.io/badge/discord-online-brightgreen.svg" alt="Discord"/></a>
|
|
||||||
<a href="https://opencollective.com/nest#backer" target="_blank"><img src="https://opencollective.com/nest/backers/badge.svg" alt="Backers on Open Collective" /></a>
|
|
||||||
<a href="https://opencollective.com/nest#sponsor" target="_blank"><img src="https://opencollective.com/nest/sponsors/badge.svg" alt="Sponsors on Open Collective" /></a>
|
|
||||||
<a href="https://paypal.me/kamilmysliwiec" target="_blank"><img src="https://img.shields.io/badge/Donate-PayPal-ff3f59.svg" alt="Donate us"/></a>
|
|
||||||
<a href="https://opencollective.com/nest#sponsor" target="_blank"><img src="https://img.shields.io/badge/Support%20us-Open%20Collective-41B883.svg" alt="Support us"></a>
|
|
||||||
<a href="https://twitter.com/nestframework" target="_blank"><img src="https://img.shields.io/twitter/follow/nestframework.svg?style=social&label=Follow" alt="Follow us on Twitter"></a>
|
|
||||||
</p>
|
|
||||||
<!--[](https://opencollective.com/nest#backer)
|
|
||||||
[](https://opencollective.com/nest#sponsor)-->
|
|
||||||
|
|
||||||
## Description
|
## Getting Started
|
||||||
|
|
||||||
[Nest](https://github.com/nestjs/nest) framework TypeScript starter repository.
|
### Prerequisites
|
||||||
|
|
||||||
## Project setup
|
- Node.js installed on your machine.
|
||||||
|
- A PostgreSQL database or another SQL database supported by Prisma.
|
||||||
|
- Environment variables for LiveKit and database credentials set up correctly.
|
||||||
|
|
||||||
|
### Installation
|
||||||
|
|
||||||
|
1. **Clone the repository:**
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
$ npm install
|
git clone https://github.com/EPESS/epess-web-backend.git
|
||||||
|
cd epess-server
|
||||||
```
|
```
|
||||||
|
|
||||||
## Compile and run the project
|
2. **Install the dependencies:**
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
# development
|
npm install
|
||||||
$ npm run start
|
|
||||||
|
|
||||||
# watch mode
|
|
||||||
$ npm run start:dev
|
|
||||||
|
|
||||||
# production mode
|
|
||||||
$ npm run start:prod
|
|
||||||
```
|
```
|
||||||
|
|
||||||
## Run tests
|
3. **Create the `.env` file:**
|
||||||
|
|
||||||
|
Create a file named `.env` at the root of the project and set the following environment variables:
|
||||||
|
|
||||||
|
```
|
||||||
|
LIVEKIT_API_KEY=your_livekit_api_key
|
||||||
|
LIVEKIT_API_SECRET=your_livekit_api_secret
|
||||||
|
DATABASE_URL=your_database_url
|
||||||
|
```
|
||||||
|
|
||||||
|
4. **Run database migrations:**
|
||||||
|
|
||||||
|
Ensure your database is set up, and use Prisma to run migrations.
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
# unit tests
|
npx prisma migrate dev
|
||||||
$ npm run test
|
|
||||||
|
|
||||||
# e2e tests
|
|
||||||
$ npm run test:e2e
|
|
||||||
|
|
||||||
# test coverage
|
|
||||||
$ npm run test:cov
|
|
||||||
```
|
```
|
||||||
|
|
||||||
## Resources
|
### Running the Application
|
||||||
|
|
||||||
Check out a few resources that may come in handy when working with NestJS:
|
To start the application:
|
||||||
|
|
||||||
- Visit the [NestJS Documentation](https://docs.nestjs.com) to learn more about the framework.
|
```bash
|
||||||
- For questions and support, please visit our [Discord channel](https://discord.gg/G7Qnnhy).
|
npm run start:dev
|
||||||
- To dive deeper and get more hands-on experience, check out our official video [courses](https://courses.nestjs.com/).
|
```
|
||||||
- Visualize your application graph and interact with the NestJS application in real-time using [NestJS Devtools](https://devtools.nestjs.com).
|
|
||||||
- Need help with your project (part-time to full-time)? Check out our official [enterprise support](https://enterprise.nestjs.com).
|
|
||||||
- To stay in the loop and get updates, follow us on [X](https://x.com/nestframework) and [LinkedIn](https://linkedin.com/company/nestjs).
|
|
||||||
- Looking for a job, or have a job to offer? Check out our official [Jobs board](https://jobs.nestjs.com).
|
|
||||||
|
|
||||||
## Support
|
This command will start the application in development mode with live reload enabled.
|
||||||
|
|
||||||
Nest is an MIT-licensed open source project. It can grow thanks to the sponsors and support by the amazing backers. If you'd like to join them, please [read more here](https://docs.nestjs.com/support).
|
## Services Description
|
||||||
|
|
||||||
## Stay in touch
|
### LiveKit Participant Service
|
||||||
|
|
||||||
- Author - [Kamil Myśliwiec](https://twitter.com/kammysliwiec)
|
This service handles operations related to participants in a LiveKit room. It utilizes the `RoomServiceClient` from the `livekit-server-sdk`.
|
||||||
- Website - [https://nestjs.com](https://nestjs.com/)
|
|
||||||
- Twitter - [@nestframework](https://twitter.com/nestframework)
|
Reference:
|
||||||
|
|
||||||
|
```typescript:src/LiveKit/livekit.participant.service.ts
|
||||||
|
startLine: 1
|
||||||
|
endLine: 8
|
||||||
|
```
|
||||||
|
|
||||||
|
### LiveKit Service
|
||||||
|
|
||||||
|
Responsible for generating access tokens for users to join LiveKit rooms. It utilizes API keys and secrets for authorization.
|
||||||
|
|
||||||
|
Reference:
|
||||||
|
|
||||||
|
```typescript:src/LiveKit/livekit.service.ts
|
||||||
|
startLine: 1
|
||||||
|
endLine: 26
|
||||||
|
```
|
||||||
|
|
||||||
|
### Other Services
|
||||||
|
|
||||||
|
The project includes additional service files for room management (`livekit.room.service.ts`) and integration with other modules like notifications and payment handling.
|
||||||
|
|
||||||
|
## Additional Notes
|
||||||
|
|
||||||
|
- Ensure that the Prisma service is properly configured and running.
|
||||||
|
- Always make sure to keep your environment variables secure.
|
||||||
|
- To seed the database with initial data, refer to `epess-database/prisma/seed.js`.
|
||||||
|
|
||||||
|
## Contributing
|
||||||
|
|
||||||
|
Please feel free to contribute by opening issues or pull requests.
|
||||||
|
|
||||||
## License
|
## License
|
||||||
|
|
||||||
Nest is [MIT licensed](https://github.com/nestjs/nest/blob/master/LICENSE).
|
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
|
||||||
|
|||||||
@@ -400,7 +400,6 @@ export class DocumentSchema extends PothosSchema {
|
|||||||
const random = Math.random()
|
const random = Math.random()
|
||||||
// 0.5% chance to request sync
|
// 0.5% chance to request sync
|
||||||
if (random <= 0.005) {
|
if (random <= 0.005) {
|
||||||
// set requestSync to true
|
|
||||||
payload.requestSync = true
|
payload.requestSync = true
|
||||||
return payload
|
return payload
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user