mirror of
https://github.com/dredx/prole.git
synced 2026-09-23 11:03:59 +00:00
- fix conf/prod/prole.cfg by replacing hardcoded /Users/chrisfu paths with /Users/chrisfu - remove injected [update.sh] log lines and stray password artifacts so config is executable - include latest pending updates across deployment config, UI/core flow, vault/network artifacts, and helper scripts
8 lines
242 B
Bash
8 lines
242 B
Bash
#!/usr/bin/env bash
|
|
cd /Users/chrisfu/dev/prole
|
|
rm -f install.pid
|
|
mkdir -p logs
|
|
nohup bash install.sh --silent -c conf/service/prole.cfg > logs/install_final2.log 2>&1 &
|
|
disown
|
|
echo "Installer launched. Tail: tail -f logs/install_final2.log"
|