From 3b4db2b8d1d9433260a4da8e85cb3ddd36b726b7 Mon Sep 17 00:00:00 2001 From: Deco Vander Date: Fri, 4 Jul 2025 11:20:25 -0400 Subject: [PATCH] Update README repository URLs from great-lakes-ice-report to ice - Updated clone commands to use correct repository name - Fixed deployment directory paths to /opt/ice - Updated systemctl service names to 'ice' from 'great-lakes-ice-report' - Ensures documentation matches actual repository structure --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index e6d0a9e..2912966 100644 --- a/README.md +++ b/README.md @@ -21,8 +21,8 @@ A community-driven web application for tracking winter road conditions and icy h 1. **Clone the repository:** ```bash - git clone git@github.com:deco/great-lakes-ice-report.git - cd great-lakes-ice-report + git clone git@github.com:deco/ice.git + cd ice ``` 2. **Install dependencies:** @@ -70,8 +70,8 @@ PORT=3000 2. **Deploy your application:** ```bash - git clone git@github.com:deco/great-lakes-ice-report.git /opt/great-lakes-ice-report - cd /opt/great-lakes-ice-report + git clone git@github.com:deco/ice.git /opt/ice + cd /opt/ice npm install ``` @@ -83,8 +83,8 @@ PORT=3000 4. **Start services:** ```bash - sudo systemctl enable great-lakes-ice-report - sudo systemctl start great-lakes-ice-report + sudo systemctl enable ice + sudo systemctl start ice sudo systemctl enable caddy sudo systemctl start caddy ```