3e52b8eb87
Add mnemonic/key credentials with image upload, tabbed UI for add/query and settings (auth/types/backup), daily backup to /root, and interactive deploy script that updates via git pull only. Co-authored-by: Cursor <cursoragent@cursor.com>
8 lines
236 B
Bash
8 lines
236 B
Bash
#!/usr/bin/env bash
|
|
# 兼容入口:转调交互式管理脚本的一键部署
|
|
# 推荐直接使用: sudo bash scripts/manage.sh
|
|
|
|
set -euo pipefail
|
|
SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
|
|
exec bash "${SCRIPT_DIR}/manage.sh" deploy
|