ruby-on-rails - Rails 应用程序不读取 .bashrc 中的环境变量

标签 ruby-on-rails bash environment-variables

我在 ~/.bashrc 中保存了一些 ENV,我关闭并重新打开该文件,它们肯定就在那里。

.bashrc:

# ~/.bashrc: executed by bash(1) for non-login shells.
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
# for examples

. /etc/apache2/envvars

# If not running interactively, don't do anything else
[ -z "$PS1" ] && return

# don't put duplicate lines or lines starting with space in the history.
# See bash(1) for more options
HISTCONTROL=ignoreboth

# append to the history file, don't overwrite it
shopt -s histappend

# for setting history length see HISTSIZE and HISTFILESIZE in bash(1)
HISTSIZE=1000
HISTFILESIZE=2000

# check the window size after each command and, if necessary,
# update the values of LINES and COLUMNS.
shopt -s checkwinsize

# make less more friendly for non-text input files, see lesspipe(1)
[ -x /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)"

# Alias definitions.
# You may want to put all your additions into a separate file like
# ~/.bash_aliases, instead of adding them here directly.
# See /usr/share/doc/bash-doc/examples in the bash-doc package.

if [ -f ~/.bash_aliases ]; then
    . ~/.bash_aliases
fi

# enable programmable completion features (you don't need to enable
# this, if it's already enabled in /etc/bash.bashrc and /etc/profile
# sources /etc/bash.bashrc).
if [ -f /etc/bash_completion ] && ! shopt -oq posix; then
    . /etc/bash_completion
fi

PS1='\[\033[01;32m\]${C9_USER}\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]$(__git_ps1 " (%s)") $ '

# If this is an xterm set the title to user@host:dir
case "$TERM" in
xterm*|rxvt*)
    PS1="\[\e]0;${debian_chroot:+($debian_chroot)}\u@\h: \w\a\]$PS1"
    ;;
*)
    ;;
esac

export rvm_silence_path_mismatch_check_flag=1

export TWILIO_SID="AXXXXX81b7eb5aXXXXeXXX6c9bfecX6X"
export TWILIO_TOKEN="XXX87XXXXXXe650ff2XXXXfXXXXX8X2"
export TWILIO_PHONE_NUMBER="+147043XXXX"

但是,当我告诉我的 Rails 应用程序使用它们时,例如在我的 Controller 中使用 ENV["TWILIO_SID"] 时,它不知道它们。我尝试在 bash 中回显它们,它只是一个空行,在 HTML 中,也是空行。 我使用的是 c9 cloud IDE,并且有一个选项可以手动将 ENV 输入到 Rails shell 中,当我这样做时,一切正常。但我的作业要求 bashrc 文件...为什么 bash 和 Rails 终端都没有读取我的 .bashrc?有什么帮助吗?

PS:总体目标是在我的 Rails 应用程序中设置一个 UNIX 环境变量。我无法使用费加罗。

PS2:这是 Controller 中我使用变量的代码。当我对它们进行硬编码时,一切正常,所以我知道环境变量发生了一些事情。

require 'twilio-ruby'

def index
end

class TexterController < ApplicationController
  def index
  end

  def text
    @number = params[:number]
    @message = params[:message]

    twilio_sid =  ENV["TWILIO_SID"]
    twilio_token = ENV["TWILIO_TOKEN"]
    twilio_phone_number = ENV["TWILIO_PHONE_NUMBER"]

    @client = Twilio::REST::Client.new(twilio_sid, twilio_token)

    @message = @client.messages.create(
      to: @number,
      from: twilio_phone_number,
      body: @message
    )

      render "pages/text.html.erb"
  end
end

最佳答案

原因如下:

要“永久”更改环境变量,您至少需要考虑以下情况:

  • 登录/非登录 shell
  • 交互式/非交互式 shell

Bash 作为登录 shell 将按顺序加载 /etc/profile、~/.bash_profile、~/.bash_login、~/.profile

Bash 作为非登录交互式 shell 将加载 ~/.bashrc

Bash 作为非登录非交互式 shell 将加载环境变量中指定的配置$BASH_ENV

来源:how to permanently set environmental variables

关于ruby-on-rails - Rails 应用程序不读取 .bashrc 中的环境变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46269510/

相关文章:

ruby-on-rails - 事件存储文件的 S3 直接链接

jquery - 模态加载页眉和页脚而不是仅仅加载页面

linux - 将 LS 用于特定路径和文件类型而不返回完整文件路径?

ruby-on-rails - Capistrano 'Bundle Not Found' 部署期间出错

visual-studio-code - 如何在 VSCode 的 launch.json 中使用自定义环境变量

linux - 在 Linux 中持久存在的环境变量的设置

ruby-on-rails - 如何使用 rails 从 URL 下载图像并将其保存到本地磁盘(计算机)?

ruby-on-rails - rails : undefined method `model_name' for Fixnum:Class

linux - 如何格式化ls的输出?

python - 编写交互式 FTP 登录脚本