🤔 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)