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
Ensure that you have [Go](https://go.dev), [Task](https://github.com/go-task/task), [Node.js](https://nodejs.org), and [Binaryen](https://github.com/WebAssembly/binaryen) installed.
168
+
169
+
Then, execuate the following commands:
170
+
171
+
```sh
172
+
$ task wasm-exec syntaxck
173
+
$ corepack enable
174
+
$ pnpm install --frozen-lockfile
175
+
$ cd frontend
176
+
```
177
+
178
+
If you don't want to have local Goggle proxy, you can specify your already-deployed endpoint by setting `VITE_EXTERN_ENDPOINT` variable.
179
+
180
+
```sh
181
+
$ echo'VITE_EXTERN_ENDPOINT=<type your endpoint url here>'> .env.production
182
+
```
183
+
184
+
Then, run!
185
+
186
+
```sh
187
+
$ pnpm dev
188
+
# Or, to use an external endpoint:
189
+
$ pnpm dev --mode production
190
+
```
191
+
192
+
For building the frontend for deployment or serving:
0 commit comments