100 lines
2.6 KiB
Bash
Executable File
100 lines
2.6 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
set -Eeuo pipefail
|
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
# shellcheck source=common.sh
|
|
source "$SCRIPT_DIR/common.sh"
|
|
cd "$PROJECT_ROOT"
|
|
|
|
MODE="debug"
|
|
ACTION="run"
|
|
INSTALL_DEPS=1
|
|
RESET_DB=0
|
|
HOST=""
|
|
PORT=""
|
|
|
|
usage() {
|
|
cat <<'TXT'
|
|
GREE Controller - development environment
|
|
|
|
Usage:
|
|
./scripts/dev.sh install missing tools, build and run
|
|
./scripts/dev.sh --release run an optimized build
|
|
./scripts/dev.sh --check formatting, tests, build and API smoke test
|
|
./scripts/dev.sh --reset remove the local database before startup
|
|
./scripts/dev.sh --no-install do not install system packages or Rust
|
|
./scripts/dev.sh --host 0.0.0.0 --port 8787
|
|
TXT
|
|
}
|
|
|
|
while [[ $# -gt 0 ]]; do
|
|
case "$1" in
|
|
--release) MODE="release"; shift ;;
|
|
--check) ACTION="check"; shift ;;
|
|
--reset) RESET_DB=1; shift ;;
|
|
--no-install) INSTALL_DEPS=0; shift ;;
|
|
--host) HOST="${2:?missing value for --host}"; shift 2 ;;
|
|
--port) PORT="${2:?missing value for --port}"; shift 2 ;;
|
|
-h|--help) usage; exit 0 ;;
|
|
*) echo "Unknown argument: $1" >&2; usage; exit 2 ;;
|
|
esac
|
|
done
|
|
|
|
if [[ "$INSTALL_DEPS" -eq 1 ]]; then
|
|
install_build_dependencies
|
|
ensure_rust
|
|
else
|
|
command -v cargo >/dev/null 2>&1 || fail "Cargo is not installed and --no-install was requested."
|
|
fi
|
|
|
|
if [[ ! -f .env ]]; then
|
|
cp .env.example .env
|
|
say "Created .env from the example configuration"
|
|
fi
|
|
mkdir -p data
|
|
if [[ "$RESET_DB" -eq 1 ]]; then
|
|
rm -f data/gree-controller.db data/gree-controller.db-shm data/gree-controller.db-wal
|
|
say "Removed the local database"
|
|
fi
|
|
|
|
set -a
|
|
# shellcheck disable=SC1091
|
|
source ./.env
|
|
set +a
|
|
|
|
if [[ -n "$HOST" || -n "$PORT" ]]; then
|
|
current="${GREE_CONTROLLER_BIND:-0.0.0.0:8787}"
|
|
current_host="${current%:*}"
|
|
current_port="${current##*:}"
|
|
export GREE_CONTROLLER_BIND="${HOST:-$current_host}:${PORT:-$current_port}"
|
|
fi
|
|
|
|
if [[ "$ACTION" == "check" ]]; then
|
|
say "Checking formatting"
|
|
cargo fmt --all -- --check
|
|
say "Running Rust tests"
|
|
cargo test --all-targets
|
|
say "Building the application"
|
|
cargo build
|
|
say "Running HTTP/API smoke test"
|
|
"$SCRIPT_DIR/smoke.sh"
|
|
say "All checks passed"
|
|
exit 0
|
|
fi
|
|
|
|
if [[ "$MODE" == "release" ]]; then
|
|
say "Building release version"
|
|
cargo build --release
|
|
BINARY="$PROJECT_ROOT/target/release/gree-controller"
|
|
else
|
|
say "Building debug version"
|
|
cargo build
|
|
BINARY="$PROJECT_ROOT/target/debug/gree-controller"
|
|
fi
|
|
|
|
bind="${GREE_CONTROLLER_BIND:-0.0.0.0:8787}"
|
|
display_host="${bind%:*}"
|
|
[[ "$display_host" == "0.0.0.0" ]] && display_host="127.0.0.1"
|
|
say "Panel: http://${display_host}:${bind##*:}"
|
|
say "Stop: Ctrl+C"
|
|
exec "$BINARY"
|