File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -13,10 +13,10 @@ The standard way to engage with the game is for players to guess the secret word
13
13
## wasmtime
14
14
15
15
``` console
16
- CARGO_TARGET_WASM32_WASI_RUNNER="wasmtime run --tcplisten 127.0.0.1:8443 --env FD_COUNT=1" cargo +nightly run --target wasm32-wasi
16
+ CARGO_TARGET_WASM32_WASI_RUNNER="wasmtime run --tcplisten 127.0.0.1:10030 --env FD_COUNT=1" cargo +nightly run --target wasm32-wasi
17
17
```
18
18
19
- Server is running on [ ` http://127.0.0.1:8443 ` ] ( http://127.0.0.1:8443 ) .
19
+ Server is running on [ ` http://127.0.0.1:10030 ` ] ( http://127.0.0.1:10030 ) .
20
20
21
21
## enarx
22
22
@@ -32,4 +32,4 @@ or simply with the help of `.cargo/config`:
32
32
cargo +nightly run
33
33
```
34
34
35
- Server is running on [ ` https://127.0.0.1:8443 ` ] ( https://127.0.0.1:8443 ) .
35
+ Server is running on [ ` https://127.0.0.1:10030 ` ] ( https://127.0.0.1:10030 ) .
Original file line number Diff line number Diff line change 1
1
#! /bin/sh
2
- export CARGO_TARGET_WASM32_WASI_RUNNER=" wasmtime run --tcplisten 127.0.0.1:8443 --env FD_COUNT=1"
2
+ export CARGO_TARGET_WASM32_WASI_RUNNER=" wasmtime run --tcplisten 127.0.0.1:10030 --env FD_COUNT=1"
3
3
exec cargo +nightly run --release --target wasm32-wasi
4
4
Original file line number Diff line number Diff line change @@ -188,7 +188,7 @@ fn get_server() -> Server {
188
188
189
189
#[ cfg( not( target_os = "wasi" ) ) ]
190
190
fn get_server ( ) -> Server {
191
- mini_http:: Server :: new ( "127.0.0.1:8443 " ) . unwrap ( )
191
+ mini_http:: Server :: new ( "127.0.0.1:10030 " ) . unwrap ( )
192
192
}
193
193
194
194
fn run ( ) -> Result < ( ) , Box < dyn std:: error:: Error > > {
You can’t perform that action at this time.
0 commit comments