Migrated all 80 app JSON files to place config_path inside each install_methods object instead of at the root level. This allows different install methods (e.g. Debian vs Alpine) to have distinct config paths. Also updated AGENTS.md JSON structure example to reflect the change.
49 lines
1.7 KiB
JSON
49 lines
1.7 KiB
JSON
{
|
|
"name": "fireshare",
|
|
"slug": "fireshare",
|
|
"categories": [
|
|
13
|
|
],
|
|
"date_created": "2026-02-21",
|
|
"type": "ct",
|
|
"updateable": true,
|
|
"privileged": false,
|
|
"interface_port": 9000,
|
|
"documentation": "https://github.com/ShaneIsrael/fireshare/blob/develop/README.md",
|
|
"website": "https://github.com/ShaneIsrael/fireshare",
|
|
"logo": "https://cdn.jsdelivr.net/gh/selfhst/icons@main/webp/fireshare.webp",
|
|
"description": "Fireshare is a self-hosted app that lets you share videos — particularly gaming clips — via unique links. You upload videos to a folder, and the app generates shareable URLs for each one. It's designed as a lightweight alternative to services like Medal or YouTube for people who want full control over their content without relying on third-party platforms.",
|
|
"install_methods": [
|
|
{
|
|
"type": "default",
|
|
"script": "ct/fireshare.sh",
|
|
"config_path": "/opt/fireshare/fireshare.env",
|
|
"resources": {
|
|
"cpu": 2,
|
|
"ram": 2048,
|
|
"hdd": 10,
|
|
"os": "Debian",
|
|
"version": "13"
|
|
}
|
|
}
|
|
],
|
|
"default_credentials": {
|
|
"username": null,
|
|
"password": null
|
|
},
|
|
"notes": [
|
|
{
|
|
"text": "Type `cat ~/fireshare.creds` to get admin username and password.",
|
|
"type": "info"
|
|
},
|
|
{
|
|
"text": "To enable GPU transcoding, you need to set proper variable in `/opt/fireshare/fireshare.env`.",
|
|
"type": "info"
|
|
},
|
|
{
|
|
"text": "The installation is compiling `ffmpeg`, `SVT-AV1` and NVIDIA headers from source, this may take a while, depending on your host speed. If possible, increase CPU cores allocated to the LXC container.",
|
|
"type": "warning"
|
|
}
|
|
]
|
|
}
|