fix runtime config
Some checks failed
Build and Publish / build-release (push) Has been cancelled

This commit is contained in:
2026-04-16 12:04:54 -05:00
parent 56286c9fcd
commit 0442ad4d5b

View File

@@ -22,9 +22,6 @@ if cookie = System.get_env("RELEASE_COOKIE") do
config :elixir, :cookie, cookie
end
config :customer_service, CustomerServiceWeb.Endpoint,
http: [port: String.to_integer(System.get_env("PORT", "8080"))]
if config_env() == :prod do
database_url =
System.get_env("DATABASE_URL") ||
@@ -35,7 +32,8 @@ if config_env() == :prod do
config :workload_service, WorkloadService.EventStore,
serializer: Commanded.Serialization.JsonSerializer,
url: event_store_database_url,
url: database_url,
schema: "eventstore",
pool_size: String.to_integer(System.get_env("EVENT_STORE_POOL_SIZE") || "10")
maybe_ipv6 = if System.get_env("ECTO_IPV6") in ~w(true 1), do: [:inet6], else: []
@@ -45,12 +43,6 @@ if config_env() == :prod do
pool_size: 1,
socket_options: maybe_ipv6
config :customer_service, CustomerService.EventStore,
serializer: Commanded.Serialization.JsonSerializer,
url: database_url,
schema: "eventstore",
pool_size: 1
secret_key_base =
System.get_env("SECRET_KEY_BASE") ||
raise """
@@ -63,9 +55,10 @@ if config_env() == :prod do
config :customer_service, :dns_cluster_query, System.get_env("DNS_CLUSTER_QUERY")
config :customer_service, CustomerServiceWeb.Endpoint,
url: [host: host, port: 80, scheme: "http"],
url: [host: host, port: String.to_integer(System.get_env("PORT", "8080")), scheme: "http"],
http: [
ip: {0, 0, 0, 0, 0, 0, 0, 0}
ip: {0, 0, 0, 0, 0, 0, 0, 0},
port: String.to_integer(System.get_env("PORT", "8080"))
],
secret_key_base: secret_key_base
end