在 heroku 中创建(克隆)相同的应用程序进行开发
create(clone) the same app for development in heroku
我正在安装应用 http://example.com in heroku. So I need to create(clone) the same app for my development in subfolder http://example.com/subfolder。这个怎么做。任何帮助将不胜感激。
注:
我只有 heroku 访问权限,没有可用的域登录。
Heroku nodejs 应用程序。
我是 Heroku 的新手。我在 localhost:5000
中克隆了相同的应用程序。但需要在线开发环境。
我终于创建了暂存环境。我的开发环境在本地。
一旦我将我的生产应用程序克隆到我的本地,然后我就创建了暂存环境。
参考此 link 从 heroku 下载代码。确保您已下载应用程序 slug。
一旦克隆到我的本地。我检查了 localhost:5000
。为此,我已经在 windows 10.
中安装了节点服务器和 git
heroku create --remote staging
执行上述命令后,您将在 Heroku 登录中看到新的暂存环境(名称将自动生成)。
在 heroku login 中点击那个新创建的应用程序名称,然后点击 deploy 选项卡,按照其中给出的过程进行操作。为此 link 可以像这样 https://dashboard.heroku.com/apps/autogenerated-appname-12345/deploy/heroku-git
在最后一步git push heroku master
我得到了错误
fatal: 'heroku' does not appear to be a git repository
fatal: Could not read from remote repository.
Please make sure you have the correct access rights and the repository exists.
然后我用了这个document中提到的git push staging master
。
然后我在浏览器里查看了https://autogenerated-appname-12345.herokuapp.com/
我正在安装应用 http://example.com in heroku. So I need to create(clone) the same app for my development in subfolder http://example.com/subfolder。这个怎么做。任何帮助将不胜感激。
注: 我只有 heroku 访问权限,没有可用的域登录。
Heroku nodejs 应用程序。
我是 Heroku 的新手。我在 localhost:5000
中克隆了相同的应用程序。但需要在线开发环境。
我终于创建了暂存环境。我的开发环境在本地。
一旦我将我的生产应用程序克隆到我的本地,然后我就创建了暂存环境。 参考此 link 从 heroku 下载代码。确保您已下载应用程序 slug。
一旦克隆到我的本地。我检查了 localhost:5000
。为此,我已经在 windows 10.
heroku create --remote staging
执行上述命令后,您将在 Heroku 登录中看到新的暂存环境(名称将自动生成)。
在 heroku login 中点击那个新创建的应用程序名称,然后点击 deploy 选项卡,按照其中给出的过程进行操作。为此 link 可以像这样 https://dashboard.heroku.com/apps/autogenerated-appname-12345/deploy/heroku-git
在最后一步git push heroku master
我得到了错误
fatal: 'heroku' does not appear to be a git repository
fatal: Could not read from remote repository.
Please make sure you have the correct access rights and the repository exists.
然后我用了这个document中提到的git push staging master
。
然后我在浏览器里查看了https://autogenerated-appname-12345.herokuapp.com/