Any way to automatically set a wizard template as default and 'auto include' #252
-
It would be very useful to be able to set a default template to be selected and set 'auto include' on startup. I've found the config value for the template dropdown, but setting this does not set the default template. Has anybody figured out how to do this? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi @jonathansandman, Thanks for reaching out. The code for loading a default template in the WebUI isn't finished yet; it's on my to-do list and I agree with you that it would be very convenient! That said, it is possible to auto-include some templates by default. You'll need to edit the
The In the future, I may enhance or replace this feature with the ability to auto-include Workflows. Right now it only supports individual templates. I hope that helps. |
Beta Was this translation helpful? Give feedback.
Hi @jonathansandman,
Thanks for reaching out.
The code for loading a default template in the WebUI isn't finished yet; it's on my to-do list and I agree with you that it would be very convenient!
That said, it is possible to auto-include some templates by default. You'll need to edit the
ui
dictionary in yourlib_unprompted/config_user.json
file. Here's an example:The
wizard_template_autoincludes
key takes a dictionary in the format ofTemplate Name
:destination
. Please note that this does not yet support template IDs (e.g. you must specify the nameMagic Spice v0.2.0
instead ofmagic_spice
).In the future, I …