17 lines
222 B
Bash
Executable File
17 lines
222 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
mkdir -p /tmp/cortex/rule
|
|
mkdir -p /tmp/tempo
|
|
|
|
echo "Starting services..."
|
|
|
|
GIT_ROOT=$(git rev-parse --show-toplevel)
|
|
pushd ${GIT_ROOT}
|
|
|
|
export HOST_GATEWAY='host-gateway'
|
|
|
|
overmind start
|
|
|
|
popd |