Skip to content

Commit 5c9906d

Browse files
committed
remove setup step from hosting guides
1 parent a6333d4 commit 5c9906d

File tree

10 files changed

+2
-22
lines changed

10 files changed

+2
-22
lines changed

website/de/book/hosting/custom.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,9 @@ lang: de
55

66
# Auf eigenen Server bereitstellen
77

8-
Du muss nur den Ausgabeordner auf deinen Server kopieren, nachdem du den setup und build Befehl ausgeführt hast.
8+
Du muss nur den Ausgabeordner auf deinen Server kopieren, nachdem du den build Befehl ausgeführt hast.
99

1010
```
11-
npx hyperbook setup
1211
npx hyperbook build
1312
1413
cp -R .hyperbook/out /var/www/my-website

website/de/book/hosting/edugitpages.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ image: node:latest
2727
pages:
2828
stage: deploy
2929
script:
30-
- npx hyperbook setup
3130
- npx hyperbook build
3231
- mkdir .public
3332
- cp -r ./.hyperbook/out/* .public

website/de/book/hosting/ghpages.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,8 @@ jobs:
2929
steps:
3030
- uses: actions/checkout@v2
3131

32-
- name: Setup and Build
32+
- name: Build
3333
run: |
34-
npx hyperbook setup
3534
npx hyperbook build
3635
3736
- name: Deploy

website/de/book/hosting/glpages.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ image: node:latest
1616
pages:
1717
stage: deploy
1818
script:
19-
- npx hyperbook setup
2019
- npx hyperbook build
2120
- mkdir .public
2221
- cp -r ./.hyperbook/out/* .public

website/de/book/hosting/vercel.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,4 @@ Für den `output directory` benutze:
2929
.hyperbook/out
3030
```
3131

32-
Für den `install command` benutze:
33-
34-
```
35-
npx hyperbook setup
36-
```
37-
3832
Jetzt ist alles eingerichtet. Viel Spaß mit deinem Hyperbook!

website/en/book/hosting/custom.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ name: Custom
77
You just need to copy the output folder after running the setup and build command.
88

99
```
10-
npx hyperbook setup
1110
npx hyperbook build
1211
1312
cp -R .hyperbook/out /var/www/my-website

website/en/book/hosting/edugitpages.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ image: node:latest
2222
pages:
2323
stage: deploy
2424
script:
25-
- npx hyperbook setup
2625
- npx hyperbook build
2726
- mkdir .public
2827
- cp -r ./.hyperbook/out/* .public

website/en/book/hosting/ghpages.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ jobs:
2929

3030
- name: Setup and Build
3131
run: |
32-
npx hyperbook setup
3332
npx hyperbook build
3433
3534
- name: Deploy

website/en/book/hosting/glpages.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ image: node:latest
1414
pages:
1515
stage: deploy
1616
script:
17-
- npx hyperbook setup
1817
- npx hyperbook build
1918
- mkdir .public
2019
- cp -r ./.hyperbook/out/* .public

website/en/book/hosting/vercel.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,4 @@ For the `output directory` you should use:
2929
.hyperbook/out
3030
```
3131

32-
For the `install command` you should use:
33-
34-
```
35-
npx hyperbook setup
36-
```
37-
3832
Now you have everything setup. Enjoy your Hyperbook!

0 commit comments

Comments
 (0)