mirror of
https://github.com/recloudstream/csdocs.git
synced 2024-08-14 22:46:50 +00:00
953 B
953 B
label | order | icon |
---|---|---|
Creating your own JSON repository | 997 | /static/json.png |
Creating your own JSON repository
Cloudstream uses JSON files to fetch and parse lists of repositories. You can create one following this template:
{
"name": "<repository name>",
"description": "<repository description>",
"manifestVersion": 1,
"pluginLists": [
"<direct link to plugins.json>"
]
}
name
: self explanatory, will be visible in the appdescription
: self explanatory, will be visible in the appmanifestVersion
: currently unused, may be used in the future for backwards compatibilitypluginLists
: List of urls, which contain plugins. All of them will be fetched.- If you followed "Using plugin template" tutorial, the appropriate
plugins.json
file should be in the builds branch of your new repository. - If not, you can still generate one by running
gradlew makePluginsJson
- If you followed "Using plugin template" tutorial, the appropriate