mirror of
https://github.com/sakaljurgis/kodi-api-server.git
synced 2026-07-08 20:37:41 +00:00
45 lines
616 B
Markdown
45 lines
616 B
Markdown
An API server for personal [KODI plugin](https://github.com/sakaljurgis/plugin.video.sklk).
|
|
|
|
## Description
|
|
|
|
A rewrite attempt from "vanilla" node.js into framework based (Nest.js).
|
|
|
|
## License
|
|
|
|
No licence
|
|
|
|
## Migrations
|
|
|
|
```bash
|
|
# create migration
|
|
$ npm run typeorm:create-migration -name=CreateFilesTable
|
|
|
|
# run migration
|
|
$ npm run typeorm:run-migrations
|
|
```
|
|
|
|
## 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
|
|
|
|
this app is not tested 😞
|