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 ### 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? ## How Can I Contribute?
@ -98,7 +98,7 @@ git clone https://github.com/YOUR_USERNAME/openhamclock.git
cd openhamclock cd openhamclock
# Add upstream remote # 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 # Install dependencies
npm install npm install
@ -209,8 +209,8 @@ Contributors will be recognized in:
Feel free to: Feel free to:
- Open a GitHub Discussion - Open a GitHub Discussion
- Email chris@cjhlighting.com
- Reach out to maintainers - 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 ```bash
# Clone the repository # Clone the repository
git clone https://github.com/k0cjh/openhamclock.git git clone https://github.com/accius/openhamclock.git
cd openhamclock cd openhamclock
# Install dependencies # Install dependencies
@ -91,19 +91,19 @@ npm start
**Linux/macOS:** **Linux/macOS:**
```bash ```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):** **Windows (PowerShell as Admin):**
```powershell ```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 ### 🍓 Raspberry Pi
```bash ```bash
# Download and run the Pi setup script # 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 chmod +x setup-pi.sh
# Standard installation # Standard installation
@ -199,7 +199,7 @@ const CONFIG = {
```bash ```bash
# Clone and setup # Clone and setup
git clone https://github.com/k0cjh/openhamclock.git git clone https://github.com/accius/openhamclock.git
cd openhamclock cd openhamclock
npm install npm install
@ -275,8 +275,9 @@ This project is licensed under the MIT License - see the [LICENSE](LICENSE) file
## 📞 Contact ## 📞 Contact
- **GitHub Issues**: [Report bugs or request features](https://github.com/k0cjh/openhamclock/issues) - **Email**: chris@cjhlighting.com
- **Discussions**: [Join the conversation](https://github.com/k0cjh/openhamclock/discussions) - **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', label: 'GitHub Repository',
click: () => { click: () => {
shell.openExternal('https://github.com/k0cjh/openhamclock'); shell.openExternal('https://github.com/accius/openhamclock');
} }
}, },
{ type: 'separator' }, { type: 'separator' },
{ {
label: 'Report Issue', label: 'Report Issue',
click: () => { click: () => {
shell.openExternal('https://github.com/k0cjh/openhamclock/issues/new'); shell.openExternal('https://github.com/accius/openhamclock/issues/new');
} }
}, },
{ type: 'separator' }, { type: 'separator' },

@ -34,12 +34,12 @@
"license": "MIT", "license": "MIT",
"repository": { "repository": {
"type": "git", "type": "git",
"url": "https://github.com/k0cjh/openhamclock.git" "url": "https://github.com/accius/openhamclock.git"
}, },
"bugs": { "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": { "dependencies": {
"express": "^4.18.2", "express": "^4.18.2",
"cors": "^2.8.5", "cors": "^2.8.5",

@ -5,7 +5,7 @@
# Quick installation script for Linux and macOS systems # Quick installation script for Linux and macOS systems
# #
# Usage: # 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: # Or manually:
# chmod +x setup-linux.sh # chmod +x setup-linux.sh
@ -69,7 +69,7 @@ setup_repo() {
git pull git pull
else else
echo "Cloning repository..." 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" cd "$INSTALL_DIR"
fi fi

@ -133,7 +133,7 @@ setup_repository() {
git pull git pull
else else
echo "Cloning repository..." 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" cd "$INSTALL_DIR"
fi fi

@ -58,7 +58,7 @@ function Setup-Repository {
} }
else { else {
Write-Host "Cloning repository..." 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 Set-Location $InstallDir
} }

Loading…
Cancel
Save

Powered by TurnKey Linux.