#!/bin/bash # Script to push OpenClaw Agent Fleet Dashboard to Gitea echo "Creating Gitea repository..." echo "" echo "Please follow these steps:" echo "1. Open https://gitea.tophermayor.com in your browser" echo "2. Log in to your account" echo "3. Click the '+' button in the top right corner" echo "4. Select 'New Repository'" echo "5. Enter repository details:" echo " - Owner: topher (or your username)" echo " - Repository Name: openclaw-taskboard" echo " - Description: OpenClaw Agent Fleet Dashboard - Task coordination board" echo " - Visibility: Public or Private (your choice)" echo " - Do NOT initialize with README, .gitignore, or license" echo "6. Click 'Create Repository'" echo "" echo "After creating the repository, run:" echo "" echo "cd /tmp/taskboard-gitea" echo "git remote add origin https://gitea.tophermayor.com/topher/openclaw-taskboard.git" echo "git branch -M main" echo "git push -u origin main" echo "" echo "Or if you prefer SSH:" echo "git remote add origin git@gitea.tophermayor.com:topher/openclaw-taskboard.git" echo "git branch -M main" echo "git push -u origin main"