import Config # Add configuration that is only needed when running on the host here. config :nerves_runtime, kv_backend: {Nerves.Runtime.KVBackend.InMemory, contents: %{ # The KV store on Nerves systems is typically read from UBoot-env, but # this allows us to use a pre-populated InMemory store when running on # host for development and testing. # # https://hexdocs.pm/nerves_runtime/readme.html#using-nerves_runtime-in-tests # https://hexdocs.pm/nerves_runtime/readme.html#nerves-system-and-firmware-metadata "nerves_fw_active" => "a", "a.nerves_fw_architecture" => "generic", "a.nerves_fw_description" => "N/A", "a.nerves_fw_platform" => "host", "a.nerves_fw_version" => "0.0.0" }} config :git_ops, mix_project: Mix.Project.get!(), changelog_file: "CHANGELOG.md", repository_url: "https://code.harton.nz/bivouac/bivouac_nerves", manage_mix_version?: true, version_tag_prefix: "v", manage_readme_version: "README.md"