An open API service indexing awesome lists of open source software.

https://github.com/supansatan/board-api


https://github.com/supansatan/board-api

Last synced: 15 days ago
JSON representation

Awesome Lists containing this project

README

          

# Board API

## Installation

```bash
$ npm install
```

## Setting environment file
Adding .env file with the below variable
```bash
JWT_SECRET=SECRETsecretSECRET
```

## Running the app
serve will run on `localhost:4000`

```bash
# development
$ npm run start

# watch mode
$ npm run start:dev

# production mode
$ npm run start:prod
```

## Swagger path
```bash
localhost:4000/api
```

## Unit tests

```bash
# unit tests
$ npm run test

# unit tests with test coverage
$ npm run test:cov
```