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

https://github.com/williamkoller/suttungr

Rest API
https://github.com/williamkoller/suttungr

docker nestjs nginx nodejs postgresql proxy-reverse rest rest-api

Last synced: about 2 months ago
JSON representation

Rest API

Awesome Lists containing this project

README

          

# Installation

```bash
yarn install
```

## Running the app

```bash
# development
$ yarn run start

# watch mode
$ yarn run start:dev

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

## Test

```bash
# unit tests
$ yarn run test

# e2e tests
$ yarn run test:e2e

# test coverage
$ yarn run test:cov
```

## Create Module

```bash
nest g mo
```

## Create Service

```bash
nest g s
```

## Running migrate

```bash
yarn prisma migrate dev
```