You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To obtain these, please use [Auth0 React SDK Guide](https://auth0.com/docs/quickstart/spa/react/01-login#configure-auth0) up until "Configure Allowed Web Origins"
46
46
47
-
4. Wiretrustee UI Dashboard uses Wiretrustee Management Service HTTP API, so setting ```WIRETRUSTEE_MGMT_API_ENDPOINT``` is required. Most likely it will be ```http://localhost:33071``` if you are hosting Management API on the same server.
47
+
4. Wiretrustee UI Dashboard uses Wiretrustee Management Service HTTP API, so setting `NETBIRD_MGMT_API_ENDPOINT` is required. Most likely it will be `http://localhost:33071` if you are hosting Management API on the same server.
48
48
5. Run docker container without SSL (Let's Encrypt):
49
49
50
-
```docker run -d --name wiretrustee-dashboard --rm -p 80:80 -p 443:443 -e AUTH0_DOMAIN=<SET YOUR AUTH DOMAIN> -e AUTH0_CLIENT_ID=<SET YOUR CLIENT ID> -e AUTH0_AUDIENCE=<SET YOUR AUDIENCE> -e WIRETRUSTEE_MGMT_API_ENDPOINT=<SET YOUR MANAGEMETN API URL> wiretrustee/dashboard:main```
50
+
```shell
51
+
docker run -d --name wiretrustee-dashboard \
52
+
--rm -p 80:80 -p 443:443 \
53
+
-e AUTH0_DOMAIN=<SET YOUR AUTH DOMAIN> \
54
+
-e AUTH0_CLIENT_ID=<SET YOUR CLIENT ID> \
55
+
-e AUTH0_AUDIENCE=<SET YOUR AUDIENCE> \
56
+
-e NETBIRD_MGMT_API_ENDPOINT=<SET YOUR MANAGEMETN API URL> \
57
+
wiretrustee/dashboard:main
58
+
```
51
59
6. Run docker container with SSL (Let's Encrypt):
52
60
53
-
```docker run -d --name wiretrustee-dashboard --rm -p 80:80 -p 443:443 -e NGINX_SSL_PORT=443 -e LETSENCRYPT_DOMAIN=<YOUR PUBLIC DOMAIN> -e LETSENCRYPT_EMAIL=<YOUR EMAIL> -e AUTH0_DOMAIN=<SET YOUR AUTH DOMAIN> -e AUTH0_CLIENT_ID=<SET YOUR CLEITN ID> -e AUTH0_AUDIENCE=<SET YOUR AUDIENCE> -e WIRETRUSTEE_MGMT_API_ENDPOINT=<SET YOUR MANAGEMETN API URL> wiretrustee/dashboard:main```
61
+
```shell
62
+
docker run -d --name wiretrustee-dashboard \
63
+
--rm -p 80:80 -p 443:443 \
64
+
-e NGINX_SSL_PORT=443 \
65
+
-e LETSENCRYPT_DOMAIN=<YOUR PUBLIC DOMAIN> \
66
+
-e LETSENCRYPT_EMAIL=<YOUR EMAIL> \
67
+
-e AUTH0_DOMAIN=<SET YOUR AUTH DOMAIN> \
68
+
-e AUTH0_CLIENT_ID=<SET YOUR CLEITN ID> \
69
+
-e AUTH0_AUDIENCE=<SET YOUR AUDIENCE> \
70
+
-e NETBIRD_MGMT_API_ENDPOINT=<SET YOUR MANAGEMETN API URL> \
71
+
wiretrustee/dashboard:main
72
+
```
54
73
55
74
## How to run local development
56
75
1. Install node 16
57
-
2. create and update the src/.local-config.json file. This file should contain values to be replaced from src/config.json
76
+
2. create and update the `src/.local-config.json` file. This file should contain values to be replaced from `src/config.json`
0 commit comments