From c203cdcbeb73473d3e4c4559dfc3744c27db93c6 Mon Sep 17 00:00:00 2001 From: Deco Vander Date: Thu, 3 Jul 2025 00:24:01 -0400 Subject: [PATCH] Update clone URLs to use SSH and correct repository name - Changed all git clone URLs to use SSH (git@github.com:) - Fixed repository name to derekslenk/ice (correct repo name) - Updated both deployment script and README - Provides better security for server deployments --- README.md | 4 ++-- scripts/deploy.sh | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 338ccc2..5ca8b31 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ A community-driven web application for tracking ICE activity locations in Michig 1. **Clone the repository:** ```bash - git clone https://github.com/deco/ice.git + git clone git@github.com:deco/ice.git cd icewatch ``` @@ -70,7 +70,7 @@ PORT=3000 2. **Deploy your application:** ```bash - git clone https://github.com/deco/ice.git /opt/icewatch + git clone git@github.com:deco/ice.git /opt/icewatch cd /opt/icewatch npm install ``` diff --git a/scripts/deploy.sh b/scripts/deploy.sh index 9f8bf90..75e2887 100644 --- a/scripts/deploy.sh +++ b/scripts/deploy.sh @@ -53,7 +53,7 @@ echo "" echo "🚀 Next steps to deploy ICE Watch:" echo "" echo "1. Clone your repository:" -echo " git clone https://github.com/deco/ice.git /opt/icewatch" +echo " git clone git@github.com:deco/ice.git /opt/icewatch" echo "" echo "2. Set up the application:" echo " cd /opt/icewatch"