Release configuration
This commit is contained in:
parent
7b4d6dbbf2
commit
33a7ab7505
5
mix.exs
5
mix.exs
|
@ -2,7 +2,8 @@ defmodule Lytedev.MixProject do
|
||||||
use Mix.Project
|
use Mix.Project
|
||||||
|
|
||||||
@src_path "src"
|
@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")
|
@test_path Path.join(@src_path, "test")
|
||||||
@build_path "build"
|
@build_path "build"
|
||||||
@deps_path Path.join(@build_path, "deps")
|
@deps_path Path.join(@build_path, "deps")
|
||||||
|
@ -47,7 +48,7 @@ defmodule Lytedev.MixProject do
|
||||||
rel_templates_path: Path.join(@src_path, "rel"),
|
rel_templates_path: Path.join(@src_path, "rel"),
|
||||||
# overlays: ["src/static"],
|
# overlays: ["src/static"],
|
||||||
steps: [:assemble],
|
steps: [:assemble],
|
||||||
runtime_config_path: Path.join(@src_path, "release.exs"),
|
runtime_config_path: Path.join(@config_dir_path, "release.exs"),
|
||||||
],
|
],
|
||||||
]
|
]
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue