Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
错误消息:推送被拒绝,未检测到支持 Cedar 的应用程序。 我的 Procfile.txt 就位,并说 web: node server.js 。 我有包,json也包括在内
错误消息:推送被拒绝,未检测到支持 Cedar 的应用程序。
我的 Procfile.txt 就位,并说 web: node server.js 。
我有包,json也包括在内
package .json 正确写入(因为在这种情况下安装依赖项时没有问题,即 node-static )。每次我尝试 git push heroku master 时,仍然会出现相同的消息。
您的 Procfile(不是 Procfile.txt)应该说:
web: node server.js
(末尾没有句号)。可以?