2024-10-13 09:11:31 +00:00
|
|
|
# Cookie Dialog Monster API
|
2022-05-05 15:19:35 +00:00
|
|
|
|
2024-05-06 18:07:42 +00:00
|
|
|
## Installation
|
|
|
|
|
2024-11-19 11:57:32 +00:00
|
|
|
Make sure you have [Node.js](https://nodejs.org/) (version 20.x) and [pnpm](https://pnpm.io/) installed.
|
2024-05-06 18:07:42 +00:00
|
|
|
|
|
|
|
```bash
|
2024-11-19 11:57:32 +00:00
|
|
|
pnpm i
|
2024-05-06 18:07:42 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
## Scripts
|
|
|
|
|
2024-11-19 11:57:32 +00:00
|
|
|
### `pnpm build`
|
2024-05-06 18:07:42 +00:00
|
|
|
|
|
|
|
Removes the build directory and compiles TypeScript files.
|
|
|
|
|
2024-11-19 11:57:32 +00:00
|
|
|
### `pnpm dev`
|
2024-05-06 18:07:42 +00:00
|
|
|
|
|
|
|
Starts the server in development mode with nodemon.
|
|
|
|
|
2024-11-19 11:57:32 +00:00
|
|
|
### `pnpm lint`
|
2024-05-06 18:07:42 +00:00
|
|
|
|
|
|
|
Lints the codebase using ESLint.
|
|
|
|
|
2024-11-19 11:57:32 +00:00
|
|
|
### `pnpm start`
|
2024-05-06 18:07:42 +00:00
|
|
|
|
|
|
|
Starts the API server instance in production mode.
|