Change HOST to WEB_HOST to avoid conflicts with local env

This commit is contained in:
Adrian Gruntkowski 2025-04-21 19:37:16 +02:00
parent 03c1bc9931
commit db2acd7614

View file

@ -1,6 +1,6 @@
import Config
config :jenot, host: System.fetch_env!("HOST")
config :jenot, host: System.fetch_env!("WEB_HOST")
port = if config_env() == :test, do: 4001, else: 4000