hakarabakara

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

Showing Posts 1 to 10

NobbZ

NobbZ

Are you using relx to build your releases? Or distillery? Or the new elixir releases?

hakarabakara

hakarabakara OP

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

NobbZ

For a release you should just do System.get_env/1 in the config/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

benwilson512

Author of Craft GraphQL APIs in Elixir with Absinthe

RELX_REPLACE_OS_VARS is a very old environment variable, it was changed to REPLACE_OS_VARS=true a while ago, maybe that will help?

Generally though you want to switch to using a releases.exs file as described here: mix release — Mix v1.20.2

hakarabakara

hakarabakara OP

I tried that and I’m getting a nil which is very strange

NobbZ

NobbZ

Can you reproduce it in a minimal project on GitHub and provide explanation how you build and run it in the README?

hakarabakara

hakarabakara OP

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

hakarabakara OP

Okay, let me do it

hakarabakara

hakarabakara OP

I realised git will not necessarily illustrate my problem so let me try to be articulate as possible. Here’s my releases.exs

import Config

config :my_app,
  secret_key_base: System.fetch_env!("SECRET_KEY_BASE"),
  variable: System.fetch_env!("VARIABLE") #or System.get_env("VARIABLE")

In my function,

System.get_env("VARIABLE") # Nil
Application.get_env(:my_app, :variable) #NIL
System.fetch_env!("VARIABLE") #{"init terminating in do_boot",{#{'__exception__'=>true,'__struct__'=>'Elixir.ArgumentError',message=><<"could not fetch environment variable \"VARIABLE\" because it is not set">>}

However, printenv in Ubuntu and nano /etc/environment show the environment variable VARIABLE set

Another strange thing is that when I go into the interactive shell iex, System.get_env("VARIABLE") prints out the value

NobbZ

NobbZ

Do you start the app in the very same terminal as you do the printenv? Do you rebuild your app after changing the config?

Where Next? Top

Trending in Questions Top

RSP87
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
nseaSeb
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
RemyXRenard
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
velrest
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
brecabral
Documentation While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
New
samoloth
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
FlyingNoodle
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 Top

mudasobwa
I am happy to introduce the very α version of the new programming language compiled to BEAM. Welcome Cure. It has literally three kille...
New
marciok
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
jimsynz
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Dmk
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
netoum
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
webofbits
With AI doing more of the implementation work, I’ve been wondering how much coding I should deliberately keep doing myself. My main conc...
#ai
New

We're in Beta

About us Mission Statement

Options

Thread Display Mode




Thread Preview

Skip Thread Previews