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

https://github.com/myuon/nestjs-react-app

nestjs-react-app
https://github.com/myuon/nestjs-react-app

Last synced: 2 months ago
JSON representation

nestjs-react-app

Awesome Lists containing this project

README

        

# nestjs-react-app

## Start dev server

```
$ yarn start:dev
```

## Start prod server

```
$ yarn build && cp -r web/dist dist/web && yarn start:prod
```

## Or use docker in prod

```
$ docker build -t app . && docker run -p 80:3000 -d app
```