Files
kodi-api-server/README.md
T
2022-12-05 17:28:37 +02:00

44 lines
503 B
Markdown

An API server for personal KODI plugin.
## Description
A rewrite attempt from "vanilla" node.js into framework based (Nest.js).
## License
No licence (Nest is MIT)
## Below are left from nest readme
## Installation
```bash
$ npm install
```
## Running the app
```bash
# development
$ npm run start
# watch mode
$ npm run start:dev
# production mode
$ npm run start:prod
```
## Test
```bash
# unit tests
$ npm run test
# e2e tests
$ npm run test:e2e
# test coverage
$ npm run test:cov
```