Installation & Setup
Installation
Composer
The recommended method to install this plugin is with Composer:
bash
composer require soerenengels/kirby-steadyAlternative: .zip
If you prefer to install your plugins via a zip file, simply download the plugin and unzip its content to /site/plugins/steady.
Alternative: Git
You can also add this plugin as git submodule:
bash
git submodule add https://github.com/soerenengels/kirby-steady.git site/plugins/steadySetup
To use this plugin, you need to add your Steady REST API-Key in your config.php. Keep the key secure.
php
<?php
return [
// ...
'options' => [
'soerenengels.steady.token' => '...', // Insert your API key
]
];☝️ Tip
You can use the kirby3-dotenv Plugin by bnomei and an .env file to keep secrets, such as your REST API-Key, out of your config.php and version control.
When you sucessfully finished the setup you should see a new Steady link in your panel navigation.