From 8e52a05c574a44be65d359de3d9fa9eaee08e7f9 Mon Sep 17 00:00:00 2001 From: cproudlock Date: Tue, 21 Oct 2025 16:22:44 -0400 Subject: [PATCH] Add Git repository and SSH key documentation to README --- README.md | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/README.md b/README.md index 1efe2d1..ee9f775 100644 --- a/README.md +++ b/README.md @@ -135,6 +135,41 @@ ORDER BY starttime ASC - **Font**: Inter (sans-serif) - **Sizes**: Large for TV readability (38px-48px headers) +## Git Repository + +This project is version controlled with Git and hosted on Gitea. + +**Repository URL:** +- SSH: `ssh://git@localhost:2222/cproudlock/shopfloor-dashboard.git` +- HTTP: `http://localhost:3000/cproudlock/shopfloor-dashboard` + +**SSH Key Setup:** + +The repository uses SSH authentication. The SSH key is already configured: + +```bash +# SSH public key location +~/.ssh/id_ed25519.pub + +# Key is registered in Gitea as "AI Key" +# User: cproudlock +``` + +**Common Git Commands:** + +```bash +# Clone the repository +git clone ssh://git@localhost:2222/cproudlock/shopfloor-dashboard.git + +# Pull latest changes +git pull + +# Commit and push changes +git add . +git commit -m "Your commit message" +git push +``` + ## Development ```bash