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