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
Copy file name to clipboardExpand all lines: references/README.md
+12-10Lines changed: 12 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -52,16 +52,18 @@ This guide assumes that you have followed the [Contributing.md](https://github.c
52
52
53
53
#### Step-by-Step Instructions
54
54
55
-
1.**Run a http tunnel**:
56
-
You will need to run a http tunnel to expose your local webapp, it is required for some API calls during building the image to deploy on your local instance. This is *optional* if you do not plan to test deployment on your local instance.
55
+
1.**Run an HTTP tunnel**:
56
+
You will need to run an HTTP tunnel to expose your local webapp, it is required for some API calls during building the image to deploy on your local instance. This is *optional* if you do not plan to test deployment on your local instance.
57
57
- Download the ngrok CLI. This can be done by following the instructions on ngrok's [website](https://ngrok.com/docs/getting-started/).
58
58
- Create an account on ngrok to obtain the authtoken and add it to the CLI.
59
-
```
59
+
60
+
```bash
60
61
ngrok config add-authtoken <your-auth-token>
61
62
```
62
63
Replace the <your-auth-token> with the token you obtain from ngrok.
63
64
- Run the tunnel.
64
-
```
65
+
66
+
```bash
65
67
ngrok http <your-app-port>
66
68
```
67
69
Replace the <your-app-port> with the webapp port, default is `3030`.
@@ -72,13 +74,13 @@ Replace the `APP_ORIGIN` variable with this URL in your `.env` file in the root
72
74
73
75
3.**Run the webapp on localhost**:
74
76
75
-
```
77
+
```bash
76
78
pnpm run dev --filter webapp --filter coordinator --filter docker-provider
0 commit comments