Update HTML files to use Bunny.net CDN for static assets

- Updated all static asset URLs to use iceymi.b-cdn.net CDN
- Changed favicon, CSS, and JS file references in index.html, admin.html, and privacy.html
- API calls remain pointed to origin server for dynamic content
- Ready for CDN deployment with proper cache separation
This commit is contained in:
Deco Vander 2025-07-03 20:44:16 -04:00
parent f73221e5cc
commit d9559f71fe
15 changed files with 770 additions and 116 deletions

View file

@ -1,6 +1,6 @@
# ICE Watch Michigan
# Great Lakes Ice Report
A community-driven web application for tracking ICE activity locations in Michigan. Reports automatically expire after 24 hours to maintain current information.
A community-driven web application for tracking winter road conditions and icy hazards in the Great Lakes region. Reports automatically expire after 48 hours to maintain current information.
## Features
@ -21,8 +21,8 @@ A community-driven web application for tracking ICE activity locations in Michig
1. **Clone the repository:**
```bash
git clone git@github.com:deco/ice.git
cd icewatch
git clone git@github.com:deco/great-lakes-ice-report.git
cd great-lakes-ice-report
```
2. **Install dependencies:**
@ -65,13 +65,13 @@ PORT=3000
1. **Run the deployment script on your server:**
```bash
curl -sSL https://ice-puremichigan-lol.s3.amazonaws.com/scripts/deploy.sh | bash
curl -sSL https://ice.puremichigan.lol/scripts/deploy.sh | bash
```
2. **Deploy your application:**
```bash
git clone git@github.com:deco/ice.git /opt/icewatch
cd /opt/icewatch
git clone git@github.com:deco/great-lakes-ice-report.git /opt/great-lakes-ice-report
cd /opt/great-lakes-ice-report
npm install
```
@ -83,8 +83,8 @@ PORT=3000
4. **Start services:**
```bash
sudo systemctl enable icewatch
sudo systemctl start icewatch
sudo systemctl enable great-lakes-ice-report
sudo systemctl start great-lakes-ice-report
sudo systemctl enable caddy
sudo systemctl start caddy
```