-
Notifications
You must be signed in to change notification settings - Fork 58
Upgrading Guide
This document contains changes required to overcome incompatibilities introduced between released versions.
See: #77
Umbrella apps have to change their config/config.exs adding:
config :kitto, otp_app: :name_of_your_app
Example:
For a dashboard generated with mix kitto.new photos
the value of :otp_app
must be :photos
Dashboard apps generated using the 0.3.1 installer include pages which are missing from previous versions. To get them run:
curl https://raw.githubusercontent.com/kittoframework/kitto/master/installer/templates/new/dashboards/error.html.eex > dashboards/error.html.eex
from the root path of your dashboard app.
In /dashboards/layout.html.eex
(which is the default layout) change
<%= template %>
to <%= @template %>
.
If you've set the :default_layout
config
to a different layout file, apply this change accordingly.
See: a539f37c3468