infra(deploy): track PM2 wrapper scripts in repo so rsync --delete cannot remove them
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Showing 2 changed files with +7 and −0
added
infra/run-ngrok.sh
+3 −0
@@ -0,0 +1,3 @@ | ||
| 1 | +#!/bin/sh | |
| 2 | +# PM2 entry for the airiskindex ngrok tunnel on m3u96b (CLAUDE.md §7). | |
| 3 | +exec /opt/homebrew/bin/ngrok http 3000 --url=https://www.airiskindex.io --log=stdout | |
added
infra/run-web.sh
+4 −0
@@ -0,0 +1,4 @@ | ||
| 1 | +#!/bin/sh | |
| 2 | +# PM2 entry for airiskindex-web on m3u96b (CLAUDE.md §7). | |
| 3 | +cd "$(dirname "$0")/../apps/web" | |
| 4 | +exec ./node_modules/.bin/next start -p 3000 | |
| 5 | ||