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
- Host: GitHub
- URL: https://github.com/williamkoller/suttungr
- Owner: williamkoller
- Created: 2023-01-27T16:08:22.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-03-14T12:59:07.000Z (about 3 years ago)
- Last Synced: 2025-01-09T19:02:28.599Z (over 1 year ago)
- Topics: docker, nestjs, nginx, nodejs, postgresql, proxy-reverse, rest, rest-api
- Language: TypeScript
- Homepage: https://api-suttungr.herokuapp.com/swagger
- Size: 204 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```