GitBook: [master] one page modified

This commit is contained in:
Grzegorz Leoniec 2018-12-13 15:13:32 +00:00 committed by gitbook-bot
parent 3e3df6df75
commit e2379755d6
No known key found for this signature in database
GPG Key ID: 07D2180C7B12D0FF

View File

@ -41,14 +41,36 @@ npm install
{% tabs %}
{% tab title="Yarn" %}
#### Development
```bash
yarn start
npm run dev
```
#### Production
```bash
# you will need to build the app first (done while building the docker image)
npm run build
# run after build (dist folder must exist)
npm run startnpm run start
```
{% endtab %}
{% tab title="NPM" %}
#### Development
```bash
npm start
yarn run dev
```
#### Production
```bash
# you will need to build the app first (done while building the docker image)
yarn run build
# run after build (dist folder must exist)
yarn run start
```
{% endtab %}
{% endtabs %}