commit 98c49a1bea3dbbe7b07c78b9882714ae933fc372 Author: santiagosayshey Date: Wed Jan 28 04:25:23 2026 +1030 Initial commit diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 0000000..3ba13e0 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1 @@ +blank_issues_enabled: false diff --git a/.github/ISSUE_TEMPLATE/issue.yml b/.github/ISSUE_TEMPLATE/issue.yml new file mode 100644 index 0000000..5e08265 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/issue.yml @@ -0,0 +1,11 @@ +name: 📝 Issue +description: Report a problem or suggest an improvement + +body: + - type: textarea + id: problem + attributes: + label: What's the problem? + placeholder: Describe the issue or suggestion + validations: + required: true diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..394af0c --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +user_ops/* \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..a188f5e --- /dev/null +++ b/README.md @@ -0,0 +1,24 @@ +# Profilarr Database Template + +Template for creating your own Profilarr-compliant database (PCD). + +## Quick Start + +1. Click **"Use this template"** → **"Create a new repository"** +2. Link the repository in Profilarr +3. Edit the manifest to customize your database +4. Start creating profiles and custom formats + +## Structure + +``` +├── pcd.json # Database manifest +├── ops/ # Your configuration operations +└── tweaks/ # Optional configuration variants +``` + +## Learn More + +- [Profilarr Documentation](https://github.com/Dictionarry-Hub/profilarr) +- [Schema Reference](https://github.com/Dictionarry-Hub/schema) +- [Example Database](https://github.com/Dictionarry-Hub/db) diff --git a/deps/.gitkeep b/deps/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/ops/.gitkeep b/ops/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/pcd.json b/pcd.json new file mode 100644 index 0000000..6b4f5d1 --- /dev/null +++ b/pcd.json @@ -0,0 +1,14 @@ +{ + "name": "my-database", + "version": "1.0.0", + "description": "My custom Arr configurations", + "arr_types": ["radarr", "sonarr"], + + "dependencies": { + "https://github.com/Dictionarry-Hub/schema": "1.0.0" + }, + + "profilarr": { + "minimum_version": "2.0.0" + } +} diff --git a/tweaks/.gitkeep b/tweaks/.gitkeep new file mode 100644 index 0000000..e69de29