You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
# sprinklers3
|
|
|
|
|
|
|
|
## How to run
|
|
|
|
|
|
|
|
### Docker
|
|
|
|
|
|
|
|
```shell
|
|
|
|
# for production build (http://localhost:8080)
|
|
|
|
docker-compose up
|
|
|
|
|
|
|
|
# for development with hot-reload (http://localhost:8081)
|
|
|
|
docker-compose -f docker-compose.dev.yml up
|
|
|
|
```
|
|
|
|
|
|
|
|
### Not docker
|
|
|
|
|
|
|
|
```shell
|
|
|
|
yarn install
|
|
|
|
|
|
|
|
# for production build (http://localhost:8080)
|
|
|
|
yarn build
|
|
|
|
yarn start:pretty
|
|
|
|
|
|
|
|
# for development build (http://localhost:8081)
|
|
|
|
yarn start:dev
|
|
|
|
```
|