<.text_field
label="URL"
help={
~S'''
If you provide the URL you
will host your instances at,
Livebook will use it to
generate direct links
throughout its interface
'''
}
field={@form[:url]}
/>
<.select_field
label="Clustering"
help={
~S'''
When running multiple
instances of Livebook,
they need to be connected
into a single cluster.
You must either deploy
it as a single instance
or choose a platform to
enable clustering on.
'''
}
field={@form[:clustering]}
options={[
{"Single instance", ""},
{"Fly.io", "fly_io"},
{"DNS", "dns"}
]}
disabled={@disabled}
/>
See the
Clustering docs
for more information.