Release configuration

This commit is contained in:
Daniel Flanagan 2020-12-28 09:34:03 -06:00
parent 7b4d6dbbf2
commit 33a7ab7505
Signed by: lytedev
GPG Key ID: 5B2020A0F9921EF4
3 changed files with 3 additions and 2 deletions

View File

@ -2,7 +2,8 @@ defmodule Lytedev.MixProject do
use Mix.Project
@src_path "src"
@config_path Path.join(@src_path, "config.exs")
@config_dir_path Path.join(@src_path, "config")
@config_path Path.join(@config_dir_path, "config.exs")
@test_path Path.join(@src_path, "test")
@build_path "build"
@deps_path Path.join(@build_path, "deps")
@ -47,7 +48,7 @@ defmodule Lytedev.MixProject do
rel_templates_path: Path.join(@src_path, "rel"),
# overlays: ["src/static"],
steps: [:assemble],
runtime_config_path: Path.join(@src_path, "release.exs"),
runtime_config_path: Path.join(@config_dir_path, "release.exs"),
],
]
end