Add Git repository and SSH key documentation to README

This commit is contained in:
cproudlock
2025-10-21 16:22:44 -04:00
parent 6a9bb8c7a4
commit 8e52a05c57

View File

@@ -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