π€ make a .env file, but how can I read and set it?
# .env
PASSWORD=12345678
ALBUM_URL=valkj82fakx
π¦ Set them by eval.
# Read the .env file and set constants
File.foreach('.env') do |line|
  key, value =  line.strip.split('=')
  eval "#{key}='#{value}'" # π¦
end
 

 
     
    
Top comments (0)