Use correct file in bin

This commit is contained in:
Lukas Hirt
2020-12-10 10:55:27 +01:00
parent 14f0bd9cc5
commit 178749b8ac
6 changed files with 9 additions and 9 deletions
+2 -2
View File
@@ -113,13 +113,13 @@ $ git clone git@github.com:owncloud/ocis.git
$ cd web
$ make
```
This should give you a `bin/ocis-web` binary. Try listing the help with `bin/ocis-web --help`.
This should give you a `bin/web` binary. Try listing the help with `bin/web --help`.
#### Run it!
Point `ocis-web` to your owncloud domain and tell it where to find the openid connect issuing authority:
```console
$ bin/ocis-web server --web-config-server https://cloud.example.com --oidc-authority https://192.168.1.100:9130 --oidc-metadata-url https://192.168.1.100:9130/.well-known/openid-configuration --oidc-client-id ocis
$ bin/web server --web-config-server https://cloud.example.com --oidc-authority https://192.168.1.100:9130 --oidc-metadata-url https://192.168.1.100:9130/.well-known/openid-configuration --oidc-client-id ocis
```
`ocis-web` needs to know
+1 -1
View File
@@ -125,7 +125,7 @@ The [ownCloud design system](https://owncloud.design/) contains a set of ownClou
This is what hello is: copy and extend!
1. ownCloud Web is configured using the config.json which is served by the ocis-web service (either `bin/ocis web` or `bin/ocis-web server`)
1. ownCloud Web is configured using the config.json which is served by the ocis-web service (either `bin/ocis web` or `bin/web server`)
2. point ocis-web to the web config which you extended with an external app:
`WEB_UI_CONFIG="`pwd`/../web/config.json" ASSET_PATH="`pwd`/../web/dist" bin/ocis web`