Initial commit
Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
This commit is contained in:
commit
fc6fc03dbc
10 changed files with 714 additions and 0 deletions
12
Makefile
Normal file
12
Makefile
Normal file
|
@ -0,0 +1,12 @@
|
|||
|
||||
default: assets/json.wasm
|
||||
|
||||
assets/json.wasm: cmd/wasm/main.go
|
||||
GOOS=js GOARCH=wasm go build -o $@ $<
|
||||
|
||||
run: server
|
||||
./server
|
||||
|
||||
server: cmd/server/main.go assets/json.wasm
|
||||
go build -o server ./cmd/server/
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue