Fix Peanut script following latest release (v3) (#3953)

pull/3954/head
Rémi Bédard-Couture 2024-10-22 16:38:48 -04:00 committed by GitHub
parent 0ab3151825
commit b4732cd8e9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 13 additions and 4 deletions

View File

@ -44,6 +44,15 @@ $STD npm install -g pnpm
$STD pnpm i
$STD pnpm run build
cp -r .next/static .next/standalone/.next/
mkdir -p /opt/peanut/.next/standalone/config
cat <<EOF >/opt/peanut/.next/standalone/config/settings.yml
WEB_HOST: 0.0.0.0
WEB_PORT: 3000
NUT_HOST: 0.0.0.0
NUT_PORT: 3493
EOF
mkdir -p /etc/peanut
ln -sf /opt/peanut/.next/standalone/config/settings.yml /etc/peanut/settings.yml
msg_ok "Installed Peanut"
msg_info "Creating Service"
@ -57,10 +66,10 @@ Restart=always
RestartSec=5
Type=simple
Environment="NODE_ENV=production"
Environment="NUT_HOST=localhost"
Environment="NUT_PORT=3493"
Environment="WEB_HOST=0.0.0.0"
Environment="WEB_PORT=3000"
#Environment="NUT_HOST=localhost"
#Environment="NUT_PORT=3493"
#Environment="WEB_HOST=0.0.0.0"
#Environment="WEB_PORT=3000"
WorkingDirectory=/opt/peanut
ExecStart=node /opt/peanut/.next/standalone/server.js
TimeoutStopSec=30