From 38ccd6d5331f6adba6f597c7df22993d3df1a4ac Mon Sep 17 00:00:00 2001 From: Deco Vander Date: Wed, 2 Jul 2025 23:57:27 -0400 Subject: [PATCH] Update deployment URLs to use ice.puremichigan.lol S3 bucket - Updated deployment script S3 URLs - Updated README with correct bucket name - Ready for automated S3 deployment via GitHub Actions --- README.md | 2 +- scripts/deploy.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 92790c3..e5c0d85 100644 --- a/README.md +++ b/README.md @@ -65,7 +65,7 @@ PORT=3000 1. **Run the deployment script on your server:** ```bash - curl -sSL https://your-bucket-name.s3.amazonaws.com/icewatch/deploy.sh | bash + curl -sSL https://ice.puremichigan.lol.s3.amazonaws.com/icewatch/deploy.sh | bash ``` 2. **Deploy your application:** diff --git a/scripts/deploy.sh b/scripts/deploy.sh index e38b464..c2ea645 100644 --- a/scripts/deploy.sh +++ b/scripts/deploy.sh @@ -38,7 +38,7 @@ sudo useradd --system --shell /bin/false --home /opt/icewatch --create-home icew # Download additional configuration files from S3 echo "📥 Downloading configuration files..." -S3_BASE_URL="https://your-bucket-name.s3.amazonaws.com/icewatch" +S3_BASE_URL="https://ice.puremichigan.lol.s3.amazonaws.com/icewatch" # Download systemd service file echo "📥 Downloading systemd service..."