From a6e2e53a1d447160dbbc2ceae90e7d9d7a0bd4c8 Mon Sep 17 00:00:00 2001 From: RyuuPendragon Date: Thu, 5 Jun 2025 08:21:13 +0000 Subject: [PATCH] Add .gitignore and renovate.json5 --- .gitignore | 15 +++++++++++++++ renovate.json5 | 19 +++++++++++++++++++ 2 files changed, 34 insertions(+) create mode 100644 .gitignore create mode 100644 renovate.json5 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..f4f6bde --- /dev/null +++ b/.gitignore @@ -0,0 +1,15 @@ +.vscode/* +!.vscode/settings.json +!.vscode/tasks.json +!.vscode/launch.json +!.vscode/extensions.json +!.vscode/*.code-snippets + +# Local History for Visual Studio Code +.history/ + +# Built Visual Studio Code Extensions +*.vsix + +# Custom +.env \ No newline at end of file diff --git a/renovate.json5 b/renovate.json5 new file mode 100644 index 0000000..f7cfd23 --- /dev/null +++ b/renovate.json5 @@ -0,0 +1,19 @@ +{ + $schema: 'https://docs.renovatebot.com/renovate-schema.json', + extends: [ + 'config:recommended' + ], + prHourlyLimit: 0, + timezone: 'Asia/Kolkata', + schedule: [ + 'before 8am on Saturday', + 'before 8am on Sunday' + ], + ignorePaths: [ + 'mailrise/*', + 'minio/*', + 'portainer-agent/*', + 'portainer/*', + 'qbittorrent/*', + ] +}