make it build

This commit is contained in:
Matthew Hodgson 2020-01-26 16:02:01 -07:00
parent 42b1adf442
commit 85a582b834
3 changed files with 7 additions and 5 deletions

View file

@ -1,3 +1,3 @@
#!/bin/sh #!/bin/sh
GOOS=js GOARCH=wasm GOBIN=$PWD/`dirname $0`/bin go build -v $PWD/`dirname $0`/cmd/dendrite-monolith-server GOOS=js GOARCH=wasm GOBIN=$PWD/`dirname $0`/bin go build -v -o bin/dendrite.wasm $PWD/`dirname $0`/cmd/dendrite-monolith-server

View file

@ -88,11 +88,11 @@ func main() {
// }() // }()
// Expose the matrix APIs via libp2p-js // Expose the matrix APIs via libp2p-js
if base.P2PLocalNode != nil { if base.P2pLocalNode != nil {
go func() { go func() {
logrus.Info("Listening on libp2p-js host ID ", base.P2PLocalNode.Id) logrus.Info("Listening on libp2p-js host ID ", base.P2pLocalNode.Id)
listener := go_http_js_libp2p.NewP2pListener(base.P2PLocalNode) listener := go_http_js_libp2p.NewP2pListener(base.P2pLocalNode)
defer listener.Close() defer listener.Close()
s := &http.Server{} s := &http.Server{}
s.Serve(listener) s.Serve(listener)
@ -104,7 +104,7 @@ func main() {
listener := go_http_js_libp2p.NewFetchListener() listener := go_http_js_libp2p.NewFetchListener()
s := &http.Server{} s := &http.Server{}
go s.Serve(listener) go s.Serve(listener)
} }()
} }
// Handle HTTPS if certificate and key are provided // Handle HTTPS if certificate and key are provided

2
go.mod
View file

@ -42,4 +42,6 @@ require (
replace github.com/matrix-org/go-http-js-libp2p v0.0.0-20200125063821-6eb06b102bda => ../go-http-js-libp2p replace github.com/matrix-org/go-http-js-libp2p v0.0.0-20200125063821-6eb06b102bda => ../go-http-js-libp2p
replace github.com/matrix-org/gomatrixserverlib v0.0.0-20200124100636-0c2ec91d1df5 => ../gomatrixserverlib
go 1.13 go 1.13