diff --git a/scripts/getgit.py b/scripts/getgit.py index 3e7205e..ccc9759 100644 --- a/scripts/getgit.py +++ b/scripts/getgit.py @@ -19,6 +19,8 @@ import argparse import subprocess import requests +server = "https://git.theflyingfool.com" + def get_repos(server, token, per_page=100): """Fetch all repositories for the authenticated user from Gitea.""" repos = [] @@ -74,7 +76,7 @@ def main(): parser.add_argument( "--server", type=str, - default="https://gitea.example.com", + default="https://git.theflyingfool.com", help="Base URL of your Gitea server (e.g. https://gitea.example.com)" ) parser.add_argument(