bivouac_nerves/config/host.exs

30 lines
1 KiB
Elixir
Raw Normal View History

2023-09-28 17:48:20 +13:00
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"
}}
2023-09-28 20:17:39 +13:00
config :git_ops,
mix_project: Mix.Project.get!(),
changelog_file: "CHANGELOG.md",
repository_url: "https://code.harton.nz/bivouac/bivouac_nerves",
2023-09-28 20:17:39 +13:00
manage_mix_version?: true,
version_tag_prefix: "v",
manage_readme_version: "README.md"