From 8f43748a328b38064778b4eed05fa05ddd4b84e2 Mon Sep 17 00:00:00 2001 From: Samuel Manzanera Date: Fri, 12 Jan 2024 11:49:51 +0100 Subject: [PATCH] Customize port for runtime conf --- config/runtime.exs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/config/runtime.exs b/config/runtime.exs index 537a681..239593e 100644 --- a/config/runtime.exs +++ b/config/runtime.exs @@ -1,3 +1,5 @@ import Config - +config :archethic_fas, [ + api_port: System.get_env("ARCHETHIC_FAS_PORT", "3000") |> String.to_integer() +]