From d2a99b9abf3a58d284a792dcc28cf9a592722be8 Mon Sep 17 00:00:00 2001 From: Milton Mazzarri Date: Tue, 19 Mar 2019 12:14:24 -0500 Subject: [PATCH] Delete configuration files --- config/config.exs | 30 ------------------------------ config/dev.exs | 4 ---- config/test.exs | 3 --- 3 files changed, 37 deletions(-) delete mode 100644 config/config.exs delete mode 100644 config/dev.exs delete mode 100644 config/test.exs diff --git a/config/config.exs b/config/config.exs deleted file mode 100644 index 68a6735..0000000 --- a/config/config.exs +++ /dev/null @@ -1,30 +0,0 @@ -# This file is responsible for configuring your application -# and its dependencies with the aid of the Mix.Config module. -use Mix.Config - -# This configuration is loaded before any dependency and is restricted -# to this project. If another project depends on this project, this -# file won't be loaded nor affect the parent project. For this reason, -# if you want to provide default values for your application for -# 3rd-party users, it should be done in your "mix.exs" file. - -# You can configure for your application as: -# -# config :hunter, key: :value -# -# And access this configuration in your application as: -# -# Application.get_env(:hunter, :key) -# -# Or configure a 3rd-party app: -# -# config :logger, level: :info -# - -# It is also possible to import configuration files, relative to this -# directory. For example, you can emulate configuration per environment -# by uncommenting the line below and defining dev.exs, test.exs and such. -# Configuration from the imported file will override the ones defined -# here (which is why it is important to import them last). -# -import_config "#{Mix.env()}.exs" diff --git a/config/dev.exs b/config/dev.exs deleted file mode 100644 index 067654f..0000000 --- a/config/dev.exs +++ /dev/null @@ -1,4 +0,0 @@ -use Mix.Config - -config :hunter, hunter_api: Hunter.Api.HTTPClient -config :hunter, http_options: [follow_redirect: true, hackney: [{:force_redirect, true}]] diff --git a/config/test.exs b/config/test.exs deleted file mode 100644 index 8f31c45..0000000 --- a/config/test.exs +++ /dev/null @@ -1,3 +0,0 @@ -use Mix.Config - -config :hunter, hunter_api: Hunter.Api.InMemory