-
Notifications
You must be signed in to change notification settings - Fork 784
Expand file tree
/
Copy pathprepare-env.sh
More file actions
executable file
·93 lines (81 loc) · 2.48 KB
/
prepare-env.sh
File metadata and controls
executable file
·93 lines (81 loc) · 2.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
#!/usr/bin/env bash
# prepare-env.sh — Create or update .env with auto-generated secrets.
# Safe to run multiple times: only fills in missing values, never overwrites existing ones.
#
# Usage: ./prepare-env.sh
set -euo pipefail
ENV_FILE=".env"
# --- helpers ---
gen_hex() { openssl rand -hex "$1" 2>/dev/null || head -c "$1" /dev/urandom | xxd -p | tr -d '\n'; }
# Read current value from .env (KEY=VALUE format, no export prefix).
get_env_val() {
local key="$1"
if [ -f "$ENV_FILE" ]; then
grep -E "^${key}=" "$ENV_FILE" 2>/dev/null | tail -1 | cut -d'=' -f2-
fi
}
# Set a key in .env. Appends if missing, replaces if empty.
set_env_val() {
local key="$1" val="$2"
if [ ! -f "$ENV_FILE" ]; then
echo "${key}=${val}" >> "$ENV_FILE"
elif grep -qE "^${key}=" "$ENV_FILE" 2>/dev/null; then
# Key exists — only replace if current value is empty
local current
current="$(get_env_val "$key")"
if [ -z "$current" ]; then
if [[ "$OSTYPE" == "darwin"* ]]; then
sed -i '' "s|^${key}=.*|${key}=${val}|" "$ENV_FILE"
else
sed -i "s|^${key}=.*|${key}=${val}|" "$ENV_FILE"
fi
fi
else
echo "${key}=${val}" >> "$ENV_FILE"
fi
}
# --- main ---
echo ""
echo "=== GoClaw Environment Preparation ==="
echo ""
# 1. Create .env from .env.example if it doesn't exist
if [ ! -f "$ENV_FILE" ]; then
if [ -f ".env.example" ]; then
# Strip 'export ' prefix for Docker Compose compatibility
sed 's/^export //' .env.example > "$ENV_FILE"
chmod 600 "$ENV_FILE"
echo " [created] .env from .env.example"
else
touch "$ENV_FILE"
chmod 600 "$ENV_FILE"
echo " [created] .env (empty)"
fi
else
echo " [exists] .env"
fi
# 2. Auto-generate GOCLAW_ENCRYPTION_KEY if missing
current_enc="$(get_env_val GOCLAW_ENCRYPTION_KEY)"
if [ -z "$current_enc" ]; then
new_key="$(gen_hex 32)"
set_env_val "GOCLAW_ENCRYPTION_KEY" "$new_key"
echo " [generated] GOCLAW_ENCRYPTION_KEY"
else
echo " [exists] GOCLAW_ENCRYPTION_KEY"
fi
# 3. Auto-generate GOCLAW_GATEWAY_TOKEN if missing
current_tok="$(get_env_val GOCLAW_GATEWAY_TOKEN)"
if [ -z "$current_tok" ]; then
new_tok="$(gen_hex 16)"
set_env_val "GOCLAW_GATEWAY_TOKEN" "$new_tok"
echo " [generated] GOCLAW_GATEWAY_TOKEN"
else
echo " [exists] GOCLAW_GATEWAY_TOKEN"
fi
echo ""
echo "=== Done ==="
echo ""
echo " Run: make up"
echo ""
echo " Web dashboard: http://localhost:18790"
echo " With separate nginx: make up WITH_WEB_NGINX=1 → http://localhost:3000"
echo ""