Skip to content

Commit eadc3b6

Browse files
committed
fix install
1 parent bc28c33 commit eadc3b6

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

install/ghostfolio-install.sh

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,20 +71,21 @@ msg_ok "Configured Redis"
7171
fetch_and_deploy_gh_release "ghostfolio" "ghostfolio/ghostfolio" "tarball" "latest" "/opt/ghostfolio"
7272

7373
msg_info "Installing Ghostfolio Dependencies"
74+
cd /opt/ghostfolio
7475
npm ci
7576
msg_ok "Installed Dependencies"
7677

7778
msg_info "Building Ghostfolio (This may take several minutes)"
7879
npm run build:production
7980
msg_ok "Built Ghostfolio"
8081

81-
msg_info "Optional CoinGecko API Configuration"
82+
msg_ok "Optional CoinGecko API Configuration"
8283
echo
8384
echo -e "${YW}CoinGecko API keys are optional but provide better cryptocurrency data.${CL}"
8485
echo -e "${YW}You can skip this and add them later by editing /opt/ghostfolio/.env${CL}"
8586
echo
86-
read -rp "${TAB3}Enter CoinGecko Demo API key (optional, press Enter to skip): " COINGECKO_DEMO_KEY
87-
read -rp "${TAB3}Enter CoinGecko Pro API key (optional, press Enter to skip): " COINGECKO_PRO_KEY
87+
read -rp "${TAB3}CoinGecko Demo API key (press Enter to skip): " COINGECKO_DEMO_KEY
88+
read -rp "${TAB3}CoinGecko Pro API key (press Enter to skip): " COINGECKO_PRO_KEY
8889

8990
msg_info "Setting up Environment"
9091
cat <<EOF >/opt/ghostfolio/.env

0 commit comments

Comments
 (0)