init commit

pull/1/head
accius 6 days ago
parent c4139ea55f
commit 3d568ae879

@ -25,7 +25,7 @@ This project and everyone participating in it is governed by our [Code of Conduc
### Good First Issues
Looking for something to work on? Check out issues labeled [`good first issue`](https://github.com/k0cjh/openhamclock/labels/good%20first%20issue) - these are great for newcomers!
Looking for something to work on? Check out issues labeled [`good first issue`](https://github.com/accius/openhamclock/labels/good%20first%20issue) - these are great for newcomers!
## How Can I Contribute?
@ -98,7 +98,7 @@ git clone https://github.com/YOUR_USERNAME/openhamclock.git
cd openhamclock
# Add upstream remote
git remote add upstream https://github.com/k0cjh/openhamclock.git
git remote add upstream https://github.com/accius/openhamclock.git
# Install dependencies
npm install
@ -209,8 +209,8 @@ Contributors will be recognized in:
Feel free to:
- Open a GitHub Discussion
- Email chris@cjhlighting.com
- Reach out to maintainers
- Join the amateur radio community discussions
---

@ -75,7 +75,7 @@ OpenHamClock is a spiritual successor to the beloved HamClock application create
```bash
# Clone the repository
git clone https://github.com/k0cjh/openhamclock.git
git clone https://github.com/accius/openhamclock.git
cd openhamclock
# Install dependencies
@ -91,19 +91,19 @@ npm start
**Linux/macOS:**
```bash
curl -fsSL https://raw.githubusercontent.com/k0cjh/openhamclock/main/scripts/setup-linux.sh | bash
curl -fsSL https://raw.githubusercontent.com/accius/openhamclock/main/scripts/setup-linux.sh | bash
```
**Windows (PowerShell as Admin):**
```powershell
Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString('https://raw.githubusercontent.com/k0cjh/openhamclock/main/scripts/setup-windows.ps1'))
Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString('https://raw.githubusercontent.com/accius/openhamclock/main/scripts/setup-windows.ps1'))
```
### 🍓 Raspberry Pi
```bash
# Download and run the Pi setup script
curl -fsSL https://raw.githubusercontent.com/k0cjh/openhamclock/main/scripts/setup-pi.sh -o setup-pi.sh
curl -fsSL https://raw.githubusercontent.com/accius/openhamclock/main/scripts/setup-pi.sh -o setup-pi.sh
chmod +x setup-pi.sh
# Standard installation
@ -199,7 +199,7 @@ const CONFIG = {
```bash
# Clone and setup
git clone https://github.com/k0cjh/openhamclock.git
git clone https://github.com/accius/openhamclock.git
cd openhamclock
npm install
@ -275,8 +275,9 @@ This project is licensed under the MIT License - see the [LICENSE](LICENSE) file
## 📞 Contact
- **GitHub Issues**: [Report bugs or request features](https://github.com/k0cjh/openhamclock/issues)
- **Discussions**: [Join the conversation](https://github.com/k0cjh/openhamclock/discussions)
- **Email**: chris@cjhlighting.com
- **GitHub Issues**: [Report bugs or request features](https://github.com/accius/openhamclock/issues)
- **Discussions**: [Join the conversation](https://github.com/accius/openhamclock/discussions)
---

@ -192,14 +192,14 @@ function createMenu() {
{
label: 'GitHub Repository',
click: () => {
shell.openExternal('https://github.com/k0cjh/openhamclock');
shell.openExternal('https://github.com/accius/openhamclock');
}
},
{ type: 'separator' },
{
label: 'Report Issue',
click: () => {
shell.openExternal('https://github.com/k0cjh/openhamclock/issues/new');
shell.openExternal('https://github.com/accius/openhamclock/issues/new');
}
},
{ type: 'separator' },

@ -34,12 +34,12 @@
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/k0cjh/openhamclock.git"
"url": "https://github.com/accius/openhamclock.git"
},
"bugs": {
"url": "https://github.com/k0cjh/openhamclock/issues"
"url": "https://github.com/accius/openhamclock/issues"
},
"homepage": "https://github.com/k0cjh/openhamclock#readme",
"homepage": "https://github.com/accius/openhamclock#readme",
"dependencies": {
"express": "^4.18.2",
"cors": "^2.8.5",

@ -5,7 +5,7 @@
# Quick installation script for Linux and macOS systems
#
# Usage:
# curl -fsSL https://raw.githubusercontent.com/k0cjh/openhamclock/main/scripts/setup-linux.sh | bash
# curl -fsSL https://raw.githubusercontent.com/accius/openhamclock/main/scripts/setup-linux.sh | bash
#
# Or manually:
# chmod +x setup-linux.sh
@ -69,7 +69,7 @@ setup_repo() {
git pull
else
echo "Cloning repository..."
git clone https://github.com/k0cjh/openhamclock.git "$INSTALL_DIR"
git clone https://github.com/accius/openhamclock.git "$INSTALL_DIR"
cd "$INSTALL_DIR"
fi

@ -133,7 +133,7 @@ setup_repository() {
git pull
else
echo "Cloning repository..."
git clone https://github.com/k0cjh/openhamclock.git "$INSTALL_DIR"
git clone https://github.com/accius/openhamclock.git "$INSTALL_DIR"
cd "$INSTALL_DIR"
fi

@ -58,7 +58,7 @@ function Setup-Repository {
}
else {
Write-Host "Cloning repository..."
git clone https://github.com/k0cjh/openhamclock.git $InstallDir
git clone https://github.com/accius/openhamclock.git $InstallDir
Set-Location $InstallDir
}

Loading…
Cancel
Save

Powered by TurnKey Linux.