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!
Trending in Questions
Hey guys,
I’ve got a huge CSV ( around 10 GB ) that needs to be processed hourly
Do you guys have any suggestions what is the best prac...
New
Hello!
Could someone please give me a help/sample code, how to delete a file from s3 using waffle/waffle_ecto from Phoenix app.
I creat...
New
I’m seeing that a list inside a Kino.DataTable will be interpreted as a charlist, even if the Kino.configure() is set to charlists: :as_l...
New
Anyone here using Honeybadger?
My Honeybadger account is being overwhelmed with noise from some bots. Seeing a lot of
Bandit.HTTPError...
New
So my question is quite simple and i have found no conclusive answer on forum, google or AI.
Should we use :erlang.float for Integer to ...
New
Hi, I’ve just set up an application with ash_authentication. There is only magic link strategy for now, so there is no confirmation add o...
New
If a change or preparation module uses Ash.Changeset.get_argument/2 or Ash.Query.get_argument/2 (or any of the other get_argument functio...
New
Other Trending Topics
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #blog-post
- #elixirconf-us
- #elixir-ls
- #ai
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming











Showing Posts 1 to 9- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
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.exsfiles, 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
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
initmethod for my project. I guess it depends on the Phoenix version. I use v1.5.1.def initnever called. I tried to setup application variables there like you did, but it didn’t work for me. So, I put the same configs forrelease(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
NobbZ
App env can be whatever you want, system environment though is string only.
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.exsis 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
Sorry, I guess I read it somewhere else. So, it shouldn’t be a problem. Thanks!
nesimtunc
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.serverbut it always sets string when access it from
Application.get_envbut 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
In your
config.exs(or a similar file) you are doing this:As
System.get_env/1always 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:
This will crash when the config is evaluated and
ENVis not set correctly.nesimtunc
Thanks! @NobbZ! where would be to put this function in a best place since I’ll use it in a few places.
NobbZ
For config you have no other possibility than to put it in exactly the config in which you use it.