From 8614e5eed685a4d44f319b4bf6f45ca8ec07e786 Mon Sep 17 00:00:00 2001 From: oSumAtrIX Date: Thu, 6 Jun 2024 02:49:44 +0200 Subject: [PATCH] chore: Change docker compose file to example --- .gitignore | 3 ++- configuration.example.toml | 17 +++++++++++++---- ...er-compose.yml => docker-compose.example.yml | 0 3 files changed, 15 insertions(+), 5 deletions(-) rename docker-compose.yml => docker-compose.example.yml (100%) diff --git a/.gitignore b/.gitignore index 8f403a3..083ef1c 100644 --- a/.gitignore +++ b/.gitignore @@ -38,4 +38,5 @@ out/ ### Project ### .env persistence/ -configuration.toml \ No newline at end of file +configuration.toml +docker-compose.yml \ No newline at end of file diff --git a/configuration.example.toml b/configuration.example.toml index 5935fd6..dcef633 100644 --- a/configuration.example.toml +++ b/configuration.example.toml @@ -1,5 +1,14 @@ -organization = "org" -patches-repository = "patches" -integrations-repositories = ["integrations"] -contributors-repositories = ["patches", "integrations"] +organization = "revanced" +patches-repository = "revanced-patches" +integrations-repositories = [ + "revanced-integrations" +] +contributors-repositories = [ + "revanced-patcher", + "revanced-patches", + "revanced-integrations", + "revanced-website", + "revanced-cli", + "revanced-manager", +] api-version = 1 diff --git a/docker-compose.yml b/docker-compose.example.yml similarity index 100% rename from docker-compose.yml rename to docker-compose.example.yml