use external secrets for password generation
Some checks failed
Build and Publish / build-release (push) Failing after 6s

This commit is contained in:
2026-04-14 15:23:02 -05:00
parent 5e4f1f33c8
commit 27801d9f2d
3 changed files with 65 additions and 19 deletions

View File

@@ -20,6 +20,10 @@ if System.get_env("PHX_SERVER") do
config :policy_service, PolicyServiceWeb.Endpoint, server: true
end
if cookie = System.get_env("RELEASE_COOKIE") do
config :elixir, :cookie, cookie
end
config :policy_service, PolicyServiceWeb.Endpoint,
http: [port: String.to_integer(System.get_env("PORT", "4000"))]