791cd4d6af
Build / build (push) Successful in 12m20s
Rebrand the project as Tinyforge to reflect its evolution from a Docker container watcher into a self-hosted mini CI/deployment platform. Rename covers: Go module path, Docker labels, DB/config filenames, JWT issuer, Dockerfile binary, docker-compose, CI workflows, frontend i18n, README with static sites docs, and all code comments.
38 lines
1.2 KiB
Bash
38 lines
1.2 KiB
Bash
#!/usr/bin/env bash
|
|
# Start (or restart) the Tinyforge dev server on port 8090.
|
|
# Usage: ./scripts/dev-server.sh
|
|
|
|
set -euo pipefail
|
|
|
|
PORT="${LISTEN_ADDR:-:8090}"
|
|
PORT_NUM="${PORT#:}"
|
|
|
|
# Kill existing process on the port if any.
|
|
PID=$(netstat -aon 2>/dev/null | grep ":${PORT_NUM}.*LISTEN" | awk '{print $5}' | head -1)
|
|
if [ -n "$PID" ] && [ "$PID" != "0" ]; then
|
|
echo "Stopping existing process on port ${PORT_NUM} (PID ${PID})..."
|
|
taskkill //F //PID "$PID" 2>/dev/null || kill "$PID" 2>/dev/null || true
|
|
sleep 1
|
|
fi
|
|
|
|
# Use a stable encryption key for development.
|
|
# Generate once and save to data/.dev-key so encrypted tokens survive restarts.
|
|
if [ -z "${ENCRYPTION_KEY:-}" ]; then
|
|
KEY_FILE="./data/.dev-key"
|
|
mkdir -p ./data
|
|
if [ -f "$KEY_FILE" ]; then
|
|
ENCRYPTION_KEY=$(cat "$KEY_FILE")
|
|
else
|
|
ENCRYPTION_KEY=$(openssl rand -hex 32)
|
|
echo "$ENCRYPTION_KEY" > "$KEY_FILE"
|
|
echo "Generated new dev encryption key (saved to $KEY_FILE)"
|
|
fi
|
|
fi
|
|
export ENCRYPTION_KEY
|
|
export ADMIN_PASSWORD="${ADMIN_PASSWORD:-admin123}"
|
|
export LISTEN_ADDR="${PORT}"
|
|
|
|
echo "Starting Tinyforge on http://localhost:${PORT_NUM}"
|
|
echo "Login: admin / ${ADMIN_PASSWORD}"
|
|
exec go run ./cmd/server
|