kopia lustrzana https://dev.funkwhale.audio/funkwhale/funkwhale
1.2 KiB
1.2 KiB
Install a plugin
Once you have created your plugin, you can install it on your Funkwhale pod.
Install a local plugin
To install a plugin located on your server:
-
Add the plugin directory to the
FUNKWHALE_PLUGINS_PATH
variable in your.env
file -
Add the plugin name to the
FUNKWHALE_PLUGINS
variable in your.env
fileFUNKWHALE_PLUGINS=myplugin,anotherplugin
-
Restart Funkwhale to pick up the changes
Install a third-party plugin
You can install third-party plugins using the funkwhale-manage
command line interface. To do this:
-
Add the plugin name to the
FUNKWHALE_PLUGINS
variable in your.env
fileFUNKWHALE_PLUGINS=myplugin,anotherplugin
-
Call the
funkwhale-manage
command line interface with the location of the plugin archive:::: {tab-set}
:::{tab-item} Debian
venv/bin/funkwhale-manage fw plugins install https://plugin_url.zip
:::
:::{tab-item} Docker
sudo docker compose run --rm api funkwhale-manage fw plugins install https://plugin_url.zip
:::
::::
-
Restart Funkwhale to pick up the changes