hakarabakara
I’m unable to get my application to read an environment variable set on Ubuntu. I keep getting the message below:
** (ArgumentError) could not fetch environment variable "VARIABLE" because it is not set
This is what I have in my prod.exs variable: System.get_env("VARIABLE") || "${VARIABLE}"
I then try to run my application as below
RELX_REPLACE_OS_VARS=true /home/app/prod/rel/my_app/bin/my_app start
I’ve looked everywhere but tutorials either seem mostly to lean towards Phoenix which I do not have in my application or using an additional dependency which I am not too inclined to do
Trending in Questions
I’m working on a project that simulates the bumbl example in the programming phoenix book. It acts almost like an email client. We have a...
New
Hello,
I know there is an approach for handling lists that allows for optimized traversal, but I can’t recall the specific method (somet...
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
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
Documentation
While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
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
Hi there! We created Gust: A task orchestrator inspired by Airflow.
For those who have never heard about Aiflow, it’s a Python-based wor...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Xamal is a deployment tool for Elixir apps that deploys native releases to bare metal servers over SSH. It’s a port of GitHub - basecamp/...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
With AI doing more of the implementation work, I’ve been wondering how much coding I should deliberately keep doing myself.
My main conc...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixirconf-us
- #ai
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 10- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
NobbZ
Are you using relx to build your releases? Or distillery? Or the new elixir releases?
hakarabakara
I’m using the new elixir releases, I’m following this documentation. hexdox mix task release
Here’s my compilation script on the server
git pull origin cd ~/deploy/my_app MIX_ENV=prod mix deps.get --only prod && MIX_ENV=prod mix clean && MIX_ENV=prod mix compile && sudo MIX_ENV=prod mix release my_app &&NobbZ
For a release you should just do
System.get_env/1in theconfig/release.exs, that’s it.Or a config provider.
It is not clear what you are doing and in which file.
To be honest, so far I have not seen the error you are citing.
benwilson512
RELX_REPLACE_OS_VARSis a very old environment variable, it was changed toREPLACE_OS_VARS=truea while ago, maybe that will help?Generally though you want to switch to using a
releases.exsfile as described here: mix release — Mix v1.20.2hakarabakara
I tried that and I’m getting a nil which is very strange
NobbZ
Can you reproduce it in a minimal project on GitHub and provide explanation how you build and run it in the README?
hakarabakara
Thank you, this is my first elixir project hence the mis-steps. I’ve removed all the references and the rest is per the tutorial suggested.
hakarabakara
Okay, let me do it
hakarabakara
I realised git will not necessarily illustrate my problem so let me try to be articulate as possible. Here’s my releases.exs
In my function,
However,
printenvin Ubuntu andnano /etc/environmentshow the environment variableVARIABLEsetAnother strange thing is that when I go into the interactive shell iex,
System.get_env("VARIABLE")prints out the valueNobbZ
Do you start the app in the very same terminal as you do the
printenv? Do you rebuild your app after changing the config?