MDodge0811

MDodge0811

Config gone post 1.9

Hey all,

I’m pretty new to Elixir and am working my way through a handful of books. Most of the books I have were all written prior to 1.9, and thus have all their instructions written around Mix New generating a config/config.exs file. Now that it doesn’t, I’m not sure exactly how to handle the config file.

Is anyone able to explain where things once in the config file now go? Do I just create my own?

Thank you!

Most Liked

Eiji

Eiji

By default config/config.exs is not generated because it was wrongly used in Elixir libraries. Please look that Elixir is not working like a framework which forces many things like for example file names. You can freely define MyModule module inside some_module.ex file. The same goes to using or not config.

It’s up to you if you decide to import Config (which is recommend way now as Mix.Config is soft-deprecated).

This means that the real question is:

Is config/config.exs a good solution for my use case?

A typical answer for this question is:

Yes, as long as your application is not a library.

You may decide to not use a Config when for example you want to store the changes of configuration made at runtime, but such situations are called edge-cases. For a typical application it’s ok to use config/config.exs as in books you’ve read.

Eiji

Eiji

If you know that something have changed since x release then it’s worth to check it’s announcement. :wink:

Here are official sources:

MDodge0811

MDodge0811

Thank you. I had read that.

I suppose I’m just still confused by it. I’m not sure how to translate these notes into “Okay, this code goes here now not there.”

Last Post!

MDodge0811

MDodge0811

Okay, that helps. Thank you very much.

Where Next?

Popular in Questions Top

electic
Hi, I am new to Elixir. I am trying to use the DateTime component to insert a date into MySQL however the there seems to be no way to fo...
New
baxterw3b
Hi guys, i’m new in the Elixir world, and i have to say, that i love it! i’m having some problem to understand anonymous functions with ...
New
Emily
I have VueJS GUIs with the project generated using Webpack. I have Elixir modules that will need to be used by the VueJS GUIs. I forese...
New
lastday4you
I wanted to check elixir version in phoenix because i found that my elixir is 1.5 but when i use Enum.chunk_by it said the function is un...
New
jay1
Why is it that the mnesia database isn’t the most preferred database for use in Elixir/Phoenix?
New
gshaw
What is the idiomatic way of matching for not nil in Elixir? E.g., First way: defp halt_if_not_signed_in(conn, signed_in_account) when...
New
svb
Hi! Currently I want to submit a form by pressing the Enter key. However, since my input field is of type “textarea” this is just adds a...
New

Other popular topics Top

New
chrismccord
Phoenix 1.4.0 released Phoenix 1.4 is out! This release ships with exciting new features, most notably with HTTP2 support, improved deve...
688 31586 112
New
gausby
I asked this very same question on twitter and got some interesting feedback, but I thought it would be a good question to ask here as we...
1207 40165 209
New
shijith.k
I am trying to start a new phoenix project with elixir 1.9, but mix phx.new does not work. It says that ** (Mix) The task "phx.new" could...
New
alice
Hey, Just curious what are the main benefits of Elixir compared to Clojure? When is Elixir more useful than Clojure and vice versa? Th...
New
siddhant3030
Hi, I have to write a raw query for one of my project. But till now I have used ecto queries and don’t have much experience writing raw ...
New

We're in Beta

About us Mission Statement