Spaces:
Running
Running
File size: 297 Bytes
b110593 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
#!/bin/bash
# Jump to root directory
cd "$( dirname "${BASH_SOURCE[0]}" )"/../.. || exit 1
export GO111MODULE=on
export DEVELOPMENT_UI=on
go run ./cmd/weaviate-server \
--scheme http \
--host "127.0.0.1" \
--port 8080 \
--config-file=tools/dev/config.local-no-network.yaml
|