Heroku DATABASE_URL
在heroku上,如何获取 DATABASE_URL 的整个值?
当我发出 a 时,
heroku config --app APP_NAME
我得到了几个配置参数,但 DATABASE_URL 并不完全可见,
DATABASE_URL => postgres://ruhej...s.com/oeuhenchej
有什么想法吗?
On heroku, how to get the whole value of DATABASE_URL ?
When I issue a
heroku config --app APP_NAME
I get several config parameters but the DATABASE_URL is not entirely visible
DATABASE_URL => postgres://ruhej...s.com/oeuhenchej
Any idea ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
(自提出问题以来,Heroku 工具带已更新;该命令现在显示整个
DATABASE_URL
。)(The Heroku toolbelt has been updated since the question was asked; the command now shows the entire
DATABASE_URL
.)为您提供所需的所有信息(url、端口、数据库名称、用户、密码):
Gives you all the informations needed (url, port, dbname, user, password):
这可能看起来非常基本,但您的 heroku APP_NAME 是 app_name.heroku.com。您可以通过登录 heroku.com 并查看您的帐户来找到该信息。为了获取您的应用程序配置变量,您只需在控制台中输入:
This may seem really basic but your heroku APP_NAME is app_name.heroku.com. You can find that by logging into heroku.com and looking in your account. In order to get your app config variables you simply type into the console:
要获取完整的数据库 URL,请使用 Heroku CLI 中的
config:get
;To get the full database URL, use
config:get
from the Heroku CLI;从heroku获取PostgreSQL转储文件:-
heroku pg:backups:capture
heroku pg:backups
它显示了所有备份
heroku pg:backups:url BackupID
To get PostgreSQL dump file from heroku :-
heroku pg:backups:capture
heroku pg:backups
it shows all the backups
heroku pg:backups:url BackupID