mirror of
https://github.com/eggent-ai/eggent.git
synced 2026-03-07 18:13:07 +00:00
34 lines
791 B
Bash
34 lines
791 B
Bash
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
fix_auth_dir() {
|
|
local dir="$1"
|
|
if [[ ! -d "$dir" ]]; then
|
|
return 0
|
|
fi
|
|
|
|
# data/ can be bind-mounted with root ownership from host;
|
|
# fix only OAuth directories to keep startup fast and scoped.
|
|
sudo chown node:node "$dir" >/dev/null 2>&1 || true
|
|
sudo chmod 700 "$dir" >/dev/null 2>&1 || true
|
|
}
|
|
|
|
fix_auth_file() {
|
|
local file_path="$1"
|
|
if [[ ! -f "$file_path" ]]; then
|
|
return 0
|
|
fi
|
|
|
|
sudo chown node:node "$file_path" >/dev/null 2>&1 || true
|
|
sudo chmod 600 "$file_path" >/dev/null 2>&1 || true
|
|
}
|
|
|
|
fix_auth_dir "/app/data/.codex"
|
|
fix_auth_dir "/app/data/.gemini"
|
|
|
|
fix_auth_file "/app/data/.codex/auth.json"
|
|
fix_auth_file "/app/data/.gemini/oauth_creds.json"
|
|
fix_auth_file "/app/data/.gemini/settings.json"
|
|
|
|
exec npm run start
|