我已按照heroku网页上的步骤进行操作
$ heroku login
$ cd my-project/
$ git init
$ heroku git:remote -a herokutestahmet
$ git add .
$ git commit -am "make it better"
$ git push heroku master
我做了所有这些,
它返回了
Verifying deploy... done.
To https://git.heroku.com/mytest.git
* [new branch] master -> master
但是当我去mytest.herokuapp.com时,它说
Application error
An error occurred in the application and your page could not be served. If you are the application owner, check your logs for details.
当我去
时https://git.heroku.com/mytest.git它说
Method not allowed
如何托管我的应用程序,它是带有express的nodeJS应用程序。请帮忙。
修改
在我的本地计算机中,我通过调用node main
来启动应用程序。也许我应该对herokuapp执行相同操作,但是如何?也许这就是错误?