我正在尝试按照他们的指示将nodejs应用程序部署到Heroku。一切都超级好,但是使用命令“ git push heroku master”完成该过程时,我遇到了问题:
$ git push heroku master
Counting objects: 215, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (145/145), done.
Writing objects: 100% (215/215), 5.67 MiB | 489.00 KiB/s, done.
Total 215 (delta 95), reused 129 (delta 59)
remote: Compressing source files... done.
remote: Building source:
remote:
remote: -----> Node.js app detected
**remote: FATAL: Can't find meteor app. Set METEOR_APP_DIR to the relative location of the meteor app within your repository if it's not in the root or 'app/' subdirectory. (Tried /tmp/build_a40a06f857ebd0b9240550674cacfe69)
remote: ! Push rejected, failed to compile Node.js app.**
remote:
remote: ! Push failed
remote: Verifying deploy...
remote:
remote: ! Push rejected to memos-hse.
remote:
To https://git.heroku.com/memos-hse.git
! [remote rejected] master -> master (pre-receive hook declined)
error: failed to push some refs to 'https://git.heroku.com/memos-hse.git'
我不使用任何“流星应用程序”。 我尝试使用METEOR_APP_DIR进行操作,但没有结果。
您对如何处理有任何想法吗?