From 868e39eea211f8f9574d5453c093c40a0c1460c8 Mon Sep 17 00:00:00 2001 From: codevictory Date: Sun, 23 May 2021 23:05:13 +0300 Subject: [PATCH] Update from Mix.Config -> Config (elixir) --- config/config.exs | 2 +- config/dev.exs | 2 +- config/prod.exs | 2 +- config/test.exs | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/config/config.exs b/config/config.exs index 5d48387..d0fbed4 100644 --- a/config/config.exs +++ b/config/config.exs @@ -5,7 +5,7 @@ # is restricted to this project. # General application configuration -use Mix.Config +import Config config :runosaari, ecto_repos: [Runosaari.Repo] diff --git a/config/dev.exs b/config/dev.exs index 4a41068..1db294c 100644 --- a/config/dev.exs +++ b/config/dev.exs @@ -1,4 +1,4 @@ -use Mix.Config +import Config # Configure your database config :runosaari, Runosaari.Repo, diff --git a/config/prod.exs b/config/prod.exs index ac591b8..8d707eb 100644 --- a/config/prod.exs +++ b/config/prod.exs @@ -1,4 +1,4 @@ -use Mix.Config +import Config config :runosaari, RunosaariWeb.Endpoint, url: [host: "runosaari.net", port: 3000], diff --git a/config/test.exs b/config/test.exs index 0324736..59118a9 100644 --- a/config/test.exs +++ b/config/test.exs @@ -1,4 +1,4 @@ -use Mix.Config +import Config # Configure your database #