From 3497cbaa6ea4f2c50140765ef920ba284410d54c Mon Sep 17 00:00:00 2001 From: hak8or Date: Mon, 22 Sep 2025 20:33:36 -0400 Subject: [PATCH] Upload example config toml --- example.toml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 example.toml diff --git a/example.toml b/example.toml new file mode 100644 index 0000000..1c2541c --- /dev/null +++ b/example.toml @@ -0,0 +1,17 @@ +# The base URL of your Gitea instance +gitea_url = "https://gitmirror.hak8or.com" + +# Your Gitea API key (generate one from User Settings -> Applications) +api_key = "API_KEY_GOES_HERE" + +# A list of remote git repositories to mirror. +repos = [ + { url = "https://gitea.hak8or.com/hak8or/gitea_mirror.git" }, + { rename = "cool_rename", url = "https://gitea.hak8or.com/hak8or/gitea_mirror.git" }, + { rename = "cool_another_rename", url = "https://gitea.hak8or.com/hak8or/gitea_mirror.git" }, + { url = "https://github.com/justcallmekoko/ESP32Marauder" } +] + +organizations = [ + { url = "https://gitea.hak8or.com/mirrors" }, +]