simple-review-server/README.md

26 lines
483 B
Markdown
Raw Normal View History

2024-08-16 15:06:07 -04:00
# simple-review-server
A simple review server written in TS.
2024-09-12 00:17:52 -04:00
Clone the repository:
```bash
git clone https://git.povario.com/powermaker450/simple-review-server
2024-09-12 00:26:33 -04:00
cd simple-review-server
2024-09-12 00:17:52 -04:00
```
Create a `.env` file with the log level you desire (max is 3):
```bash
LOG_LEVEL=3
```
Install dependencies and run the server:
2024-09-12 00:17:52 -04:00
```bash
pnpm i
pnpm build
pnpm start
2024-09-12 00:17:52 -04:00
```
To post a review to the server, use [Simple Review Client](https://git.povario.com/powermaker450/simple-review-client)