From 8212c1347bab0255a22ac5f73e8c633f2ea0dfc0 Mon Sep 17 00:00:00 2001 From: lalabuy948 Date: Tue, 24 Sep 2024 10:29:14 +0200 Subject: [PATCH] remove default values in config --- config/config.exs | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/config/config.exs b/config/config.exs index 69213c7..816e1a9 100644 --- a/config/config.exs +++ b/config/config.exs @@ -1,10 +1,9 @@ import Config -config :phoenix_analytics, - duckdb_path: System.get_env("DUCKDB_PATH") || "analytics.duckdb", - app_domain: System.get_env("PHX_HOST") || "example.com" - -# postgres_conn: "dbname=postgres user=phoenix password=analytics host=localhost" -# cache_ttl: System.get_env("CACHE_TTL") || 120 # seconds +# config :phoenix_analytics, +# duckdb_path: System.get_env("DUCKDB_PATH") || "analytics.duckdb", +# app_domain: System.get_env("PHX_HOST") || "example.com", +# postgres_conn: "dbname=postgres user=phoenix password=analytics host=localhost", +# cache_ttl: System.get_env("CACHE_TTL") || 120 # seconds import_config "#{config_env()}.exs"