我想向Rails凭据引入一种生产和开发模式,如果我有一个在两个环境中都相同的base_url,我能像这样把它放在nest之外吗?
base_url:
hostname: http://....
production:
client_api_endpoint: http://...
development:
client_api_endpoint: http://....
或者base_url必须在生产和开发中吗?
production:
base_url:
hostname: http://....
client_api_endpoint: http://...
development:
base_url:
hostname: http://....
client_api_endpoint: http://....
1条答案
按热度按时间kb5ga3dv1#
如果这是在
credentials.yml.enc
中,那么最重要的是知道如何访问变量。