There was an error while loading. Please reload this page.
The default HTTP port is 4000. You can specify a different port with any of the following ways:
4000
elixir --erl '-kitto port 5000' -S mix kitto.server
iex --erl '-kitto port 5000' -S mix
config/config.ex
config :kitto, port: 5000
Change config/config.ex to fetch the port from the environment.
config :kitto, port: {:system, "KITT0_PORT"}
Pass the env variable when starting the server
KITTO_PORT=4444 mix kitto.server