12 lines
214 B
Bash
Executable File
12 lines
214 B
Bash
Executable File
#!/bin/sh
|
|
if [[ -n "$CERC_SCRIPT_DEBUG" ]]; then
|
|
set -x
|
|
fi
|
|
|
|
# TODO: pass from the caller
|
|
LOGLEVEL="info"
|
|
|
|
# TODO: Get genesis file using CURL
|
|
|
|
laconicd start --gql-playground --gql-server --log_level $LOGLEVEL
|