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
This commit is contained in:
Deco Vander 2025-07-03 00:24:01 -04:00
parent 0af3b7eeea
commit c203cdcbeb
2 changed files with 3 additions and 3 deletions

View file

@ -21,7 +21,7 @@ A community-driven web application for tracking ICE activity locations in Michig
1. **Clone the repository:** 1. **Clone the repository:**
```bash ```bash
git clone https://github.com/deco/ice.git git clone git@github.com:deco/ice.git
cd icewatch cd icewatch
``` ```
@ -70,7 +70,7 @@ PORT=3000
2. **Deploy your application:** 2. **Deploy your application:**
```bash ```bash
git clone https://github.com/deco/ice.git /opt/icewatch git clone git@github.com:deco/ice.git /opt/icewatch
cd /opt/icewatch cd /opt/icewatch
npm install npm install
``` ```

View file

@ -53,7 +53,7 @@ echo ""
echo "🚀 Next steps to deploy ICE Watch:" echo "🚀 Next steps to deploy ICE Watch:"
echo "" echo ""
echo "1. Clone your repository:" 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 ""
echo "2. Set up the application:" echo "2. Set up the application:"
echo " cd /opt/icewatch" echo " cd /opt/icewatch"