1.1 KiB
1.1 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 manage.py
script. To do this:
-
Add the plugin name to the
FUNKWHALE_PLUGINS
variable in your.env
fileFUNKWHALE_PLUGINS=myplugin,anotherplugin
-
Call the
manage.py
script with the location of the plugin archive:::: {tab-set}
:::{tab-item} Debian
python manage.py fw plugins install https://plugin_url.zip
:::
:::{tab-item} Docker
docker-compose run --rm api python manage.py fw plugins install https://plugin_url.zip
:::
::::
-
Restart Funkwhale to pick up the changes