diff --git a/.tool-versions b/.tool-versions index 1c43fd8c8..3b36ea70e 100644 --- a/.tool-versions +++ b/.tool-versions @@ -1,2 +1,4 @@ erlang 26.2.2 elixir 1.16.1-otp-26 +nodejs 18.19.1 +postgres 13.8 diff --git a/config/dev.exs b/config/dev.exs index 429a84391..a12c110f0 100644 --- a/config/dev.exs +++ b/config/dev.exs @@ -5,9 +5,9 @@ config :mobilizon, Mobilizon.Web.Endpoint, port: String.to_integer(System.get_env("MOBILIZON_INSTANCE_HOST_PORT", "4000")) ], url: [ - host: System.get_env("MOBILIZON_INSTANCE_HOST", "mobilizon.local"), - port: String.to_integer(System.get_env("MOBILIZON_INSTANCE_HOST_PORT", "80")), - scheme: "http" + host: System.get_env("MOBILIZON_INSTANCE_HOST", "localhost"), + port: String.to_integer(System.get_env("MOBILIZON_INSTANCE_HOST_PORT", "4000")), + scheme: System.get_env("MOBILIZON_INSTANCE_SCHEME", "http") ], secret_key_base: System.get_env("MOBILIZON_INSTANCE_SECRET_KEY_BASE", "changethis"), debug_errors: true,