Revert to 56e05fced

This commit is contained in:
Pim Kunis 2019-07-31 13:16:53 +02:00
parent 4569869d6a
commit 510cdcbc9c
7 changed files with 16 additions and 6 deletions

View file

@ -5,8 +5,6 @@
# is restricted to this project.
use Mix.Config
import_config "../../ui/config/config.exs"
config :firmware, target: Mix.target()
# Customize non-Elixir parts of the firmware. See
@ -28,6 +26,16 @@ config :shoehorn,
config :logger, backends: [RingLogger]
config :ui, UiWeb.Endpoint,
url: [host: "localhost"],
http: [port: 80],
secret_key_base: "HEY05EB1dFVSu6KykKHuS4rQPQzSHv4F7mGVB/gnDLrIu75wE/ytBXy2TaL3A6RA",
root: Path.dirname(__DIR__),
server: true,
render_errors: [view: UiWeb.ErrorView, accepts: ~w(html json)],
pubsub: [name: Nerves.PubSub, adapter: Phoenix.PubSub.PG2],
code_reloader: false
config :phoenix, :json_library, Jason
if Mix.target() != :host do