From ba1eb704364b95c0fe0a6a56ee398a585ee399a3 Mon Sep 17 00:00:00 2001 From: Claude Date: Sun, 19 Apr 2026 22:45:26 +0000 Subject: [PATCH] bootstrap.sh: fix post-install instructions (remove CAM_NAME, add pip step) CAM_NAME is no longer a config key; replace with CAMERAS + SUNRISE_CAM. Add pip3 install step for suntime/pytz/requests as step 1. https://claude.ai/code/session_01C4jbd3waXG3eKZYbGUjLUQ --- bootstrap.sh | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/bootstrap.sh b/bootstrap.sh index 1f63b7a..0c015b9 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -20,12 +20,15 @@ mv "sky-cam-$BRANCH" "$TARGET" echo "" echo "Done. Next steps:" -echo " 1. Edit $TARGET/sky-cam.conf" +echo " 1. pip3 install suntime pytz requests" +echo "" +echo " 2. Edit $TARGET/sky-cam.conf" echo " — SCRIPT_DIR full path to the directory you'll run scripts from" echo " — BASE_DIR where your camera images live" echo " — MUSIC_DIR path to your Vivaldi Four Seasons audio files" -echo " — CAM_NAME camera subfolder name (e.g. sunrise)" +echo " — CAMERAS list of camera names, e.g. (sunrise)" +echo " — SUNRISE_CAM which camera faces east (gets the sunrise video job)" echo " — LATITUDE / LONGITUDE / TIMEZONE your location" echo " — Mattermost credentials (mattermost_url, access_token, channel_id)" echo "" -echo " 2. cd $TARGET && ./install.sh" +echo " 3. cd $TARGET && ./install.sh"