Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/heroku/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181

Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/google-cloud-platform/3.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
有没有可能;“关闭”;我的应用程序&x27;s Heroku';谁让博士后省钱?_Heroku_Heroku Postgres - Fatal编程技术网

有没有可能;“关闭”;我的应用程序&x27;s Heroku';谁让博士后省钱?

有没有可能;“关闭”;我的应用程序&x27;s Heroku';谁让博士后省钱?,heroku,heroku-postgres,Heroku,Heroku Postgres,我知道我关闭了heroku上的dynos,这样我就不必支付任何费用 我只是想知道我是否可以“关闭”我的postgres,这样我就不必每月花50美元购买一个数据库,而我只会在3个月内完全启动一个应用程序 Heroku Postgres确实提供了一个“免费层”数据库选项,您可以在应用程序启动前开发应用程序时使用它 要使用“免费层”数据库,您可以像配置任何其他加载项一样配置加载项: $ heroku addons:create heroku-postgresql # this is the free

我知道我关闭了heroku上的dynos,这样我就不必支付任何费用


我只是想知道我是否可以“关闭”我的postgres,这样我就不必每月花50美元购买一个数据库,而我只会在3个月内完全启动一个应用程序

Heroku Postgres确实提供了一个“免费层”数据库选项,您可以在应用程序启动前开发应用程序时使用它

要使用“免费层”数据库,您可以像配置任何其他加载项一样配置加载项:

$ heroku addons:create heroku-postgresql  # this is the free plan, by default
当你的应用程序准备上线时,你可以备份你的免费数据库,提供一个新的、更大的付费数据库,然后导入你的数据


Heroku提供了以非常直接的方式完成所有这些工作的工具。

可能与此重复:[[1]: