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
fileAdd 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 archivevenv/bin/funkwhale-manage fw plugins install https://plugin_url.zip
sudo docker compose run --rm api funkwhale-manage fw plugins install https://plugin_url.zip
Restart Funkwhale to pick up the changes