Some plugins may not have config.

There are 2 ways to install a plugin, through the Controller App or through an IDE.

IDE

To edit a plugins config, locate the plugins folder inside of the /plugins directory.

You will then need to find the plugins blitz.config.yaml file.

To edit the config, all you need to do is update it’s value inside of the plugins config file.

Example blitz.config.yaml

blitz.config.yaml
name: my_plugin
description: My totally cool plugin
version: 1.0.0

config:
    cool_message: "This is a cool message"

This basic example of a blitz.config.yaml file contains a config key called cool_message. Currently the value is This is a cool message.

blitz.config.yaml
name: my_plugin
description: My totally cool plugin
version: 1.0.0

config:
    cool_message: "This is an updated config message!"

After updating the config file, the new value for cool_message would be This is an updated config message!.

Controller App

1

Edit A Bot

Click on the pencil icon on one of your bot’s cards.

2

Find Plugins

Find the “Plugins” section and locate the plugin you want to configure.

3

Open Plugin Settings

Click on the settings cog on the plugins card.

4

Find Config Value

Locate the config value you want to update.

5

Update

Enter the new value for the config key inside of the input box.