nesimtunc

nesimtunc

Hi,

I set some application environment variables based on System’s environment variables in config.exs file like this:

And access it from DevicePlug module like this:

https://github.com/rainlab-inc/cothings/blob/master/lib/coliving_web/plugs/device_plug.ex#L19-L24

While I get access these values properly from another modules without problem, for example:

but I get error in DevicePlug module and it returns “false” as string instead of a boolean variable. Why?

Here’s a full stack error log:

[info] GET /
[debug] Processing with ColivingWeb.PageController.index/2
  Parameters: %{}
  Pipelines: [:browser]
"false"
[info] Sent 500 in 59ms
[error] #PID<0.468.0> running ColivingWeb.Endpoint (connection #PID<0.467.0>, stream id 1) terminated
Server: localhost:4000 (http)
Request: GET /
** (exit) an exception was raised:
    ** (CaseClauseError) no case clause matching: "false"
        (coliving 0.1.0) lib/coliving_web/plugs/device_plug.ex:20: ColivingWeb.Plugs.DevicePlug.call/2
        (coliving 0.1.0) ColivingWeb.Router.browser/2
        (coliving 0.1.0) lib/coliving_web/router.ex:1: ColivingWeb.Router.__pipe_through0__/1
        (phoenix 1.5.1) lib/phoenix/router.ex:347: Phoenix.Router.__call__/2
        (coliving 0.1.0) lib/coliving_web/endpoint.ex:1: ColivingWeb.Endpoint.plug_builder_call/2
        (coliving 0.1.0) lib/plug/debugger.ex:132: ColivingWeb.Endpoint."call (overridable 3)"/2
        (coliving 0.1.0) lib/coliving_web/endpoint.ex:1: ColivingWeb.Endpoint.call/2
        (phoenix 1.5.1) lib/phoenix/endpoint/cowboy2_handler.ex:64: Phoenix.Endpoint.Cowboy2Handler.init/4
        (cowboy 2.7.0) coliving/deps/cowboy/src/cowboy_handler.erl:41: :cowboy_handler.execute/2
        (cowboy 2.7.0) coliving/deps/cowboy/src/cowboy_stream_h.erl:320: :cowboy_stream_h.execute/3
        (cowboy 2.7.0) coliving/deps/cowboy/src/cowboy_stream_h.erl:302: :cowboy_stream_h.request_process/3
        (stdlib 3.11.2) proc_lib.erl:249: :proc_lib.init_p_do_apply/3

Thanks!

First 9 of 9 Posts Switch mode

Nicd

Nicd

Environment variables are always strings. If you wish to cast them to a different type, you need to do that manually.

Be careful about getting environment variables in your config.exs files, as they are evaluated during build time and will reflect the build environment. When you move to production, you probably want to be able to get the values at startup / runtime instead. I just wrote a blog post about the different places of configuration.

nesimtunc

nesimtunc OP

Great article! Thanks! It says don’t mix the env (build & runtime) however I can see there’re same configs for both. I assume they’ll be separated in their each env. When it releases it will be runtime, otherwise build time config.

And I couldn’t setup init method for my project. I guess it depends on the Phoenix version. I use v1.5.1. def init never called. I tried to setup application variables there like you did, but it didn’t work for me. So, I put the same configs for release (releases.exs).

I don’t know what is the reason of app env. variables are string but I hope one it will support other types as well, until that time I’ll use string. So, I did it like this :confused:

NobbZ

NobbZ

App env can be whatever you want, system environment though is string only.

Nicd

Nicd

Not sure what you mean by this. The main thing to think about is that the normal config files are evaluated at build time, but config/releases.exs is evaluated at startup time.

I should probably clarify that in the article. The init functions are just a convention that many libraries use, but Phoenix does not use it. So that’s why it’s never called. The example uses Geolix which does allow setting an init function to be called at startup.

nesimtunc

nesimtunc OP

Sorry, I guess I read it somewhere else. So, it shouldn’t be a problem. Thanks!

nesimtunc

nesimtunc OP

oh you mean it becomes string because it might be set in string in env variables or system env variables are always string?

I run the application like this:

LOG_ROOM_USAGE=true LOG_ROOM_USAGE_WITH_DEVICE_UUID=false ENABLE_SOCKET_CLIENT_AUTH=false mix phx.server

but it always sets string when access it from Application.get_env but you’re cause I don’t have that problem when I set Application env from test like this: Application.put_env(:coliving, :usage_logging_enabled, true)

NobbZ

NobbZ

In your config.exs (or a similar file) you are doing this:

config :foo, :bar, System.get_env("ENV")

As System.get_env/1 always returns a string (the system environment isn’t even able to store something else), Application.get_env(:foo, :bar) will of course return a string as well.

If you want to read a “boolean” from the enf, you need a little helper:

toBool = fn
  "true", _ -> true
  "false", _ -> false
  nil, default -> default
end

config :foo, :bar, toBool.(System.get_env("ENV"), false)

This will crash when the config is evaluated and ENV is not set correctly.

nesimtunc

nesimtunc OP

Thanks! @NobbZ! where would be to put this function in a best place since I’ll use it in a few places.

NobbZ

NobbZ

For config you have no other possibility than to put it in exactly the config in which you use it.

— All posts loaded —

Where Next? Top

Trending in Questions Top

stjefim
Hello! Suppose you are building workflow (order / task / payment) processing system with the following requirements: Each workflow con...
New
jonnycharles
I’m in search of an Elixir library that offers PDF generation capabilities similar to Ruby’s Prawn. While there have been discussions abo...
New
spammy
I’m looking to build a personal workflow to quickly deploy web applications written in elixir/phoenix, for local consumption (ie not on t...
New
dli
Before I dive in myself, did anyone successfully sprinkle Hologram into their existing LiveView app? Looking for hints regarding: Addi...
New
roeland
Kia ora, We have been using elixir-google-api to connect to Google Drive. However, with the updates to Tesla due to CVEs this is now bro...
New
bottlenecked
Hi all, I wanted to ask how the community is dealing with post-release steps. Today we have Ecto migrations, which make sure that the db...
New
rahultumpala
Hello, I have an Elixir backend that implements a custom protocol over TCP. I want to load test the backend and assess the performance o...
New

Other Trending Topics Top

JesseHerrick
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
jimsynz
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Damirados
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge &amp; Solve. They are GUI (Emerge) and State management (S...
New
netoum
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
ausimian
Emily is an Elixir library that runs Nx computations on Apple’s MLX. Install it as the default Nx backend and Nx, defn, Axon, Nx.Serving,...
New
juhalehtonen
There has been a thread to discuss the Stack Overflow Developer Survey on this forum every year since 2018, so here’s yet another one for...
New

We're in Beta

About us Mission Statement