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
- Host: GitHub
- URL: https://github.com/myuon/nestjs-react-app
- Owner: myuon
- Created: 2022-02-26T12:56:18.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-03-12T08:56:06.000Z (about 3 years ago)
- Last Synced: 2025-02-21T12:03:02.814Z (4 months ago)
- Language: TypeScript
- Homepage:
- Size: 327 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```