不能逼得太紧

我把当前的 Git 存储库推送到 heroku。 那个在线应用程序是用 Scala 和 IntelliJ 开发的。 我不知道如何修复这个错误。

$ git push heroku master
Counting objects: 3, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (3/3), done.
Writing objects: 100% (3/3), 531 bytes | 0 bytes/s, done.
Total 3 (delta 0), reused 0 (delta 0)
remote: Compressing source files... done.
remote: Building source:
remote:
remote:  !     No default language could be detected for this app.
remote:             HINT: This occurs when Heroku cannot detect the         buildpack to use for this application automatically.
remote:             See https://devcenter.heroku.com/articles/buildpacks
remote:
remote:  !     Push failed
remote: Verifying deploy....
remote:
remote: !   Push rejected to salty-coast-14102.
remote:
To https://git.heroku.com/salty-coast-14102.git
! [remote rejected] master -> master (pre-receive hook declined)
error: failed to push some refs to 'https://git.heroku.com/salty-coast-14102.git'
119346 次浏览

读一下这个文件,它会告诉你该怎么做。
Https://devcenter.heroku.com/articles/buildpacks

在应用程序上设置构建包

通过设置 buildpack 值,可以更改应用程序使用的 buildpack。
当下一次推动应用程序时,将使用新的构建包。

$ heroku buildpacks:set heroku/php

Buildpack 设置。下一个在 Random-app-1234上发布的版本将使用 heroku/php。
运行 git push heroku master以使用这个构建包创建一个新版本。

这就是为什么它不适合你,因为你没有设置它。

... 当下一次推送应用程序时,将使用新的构建包。

返回文章页面

$ heroku create myapp --buildpack heroku/python

如果您的应用程序是 Scala 应用程序,它必须在根目录中有一个 build.sbt,并且该文件必须签入 Git。你可以通过运行:

$ git ls-files build.sbt

如果该文件存在并签入到 Git 中,请尝试运行以下命令:

$ heroku buildpacks:set heroku/scala

在项目的根目录中必须有一个 .git目录。

如果您没有看到该目录,运行 git init,然后重新关联您的远程。

像这样:

heroku git:remote -a herokuAppName
git push heroku master

您需要遵循这里显示的说明,在您的案例中遵循 scala 配置:

Https://devcenter.heroku.com/articles/getting-started-with-scala#introduction

在设置了开始包之后,围绕默认配置进行调整,并应用到本地存储库。它应该可以工作,就像我使用 NodeJS 一样。

哈哈! :)

确保在项目的根目录中有 package.json。 快乐编码:)

如果您是 python用户-
创建一个 requirements.txt文件,最好使用 pip freeze > requirements.txt
添加,提交,然后再试一次。

如果这不起作用,尝试删除 .git(注意,这可能会删除相关的 git 历史记录) ,然后再次按照上面的步骤操作。

对我有用。

在创建应用程序时指定 buildpack。

heroku create appname --buildpack heroku/python

如果您使用 django 应用程序在 heroku 上部署

请确保将 请求库放在 requments.txt 文件中。

您也可以从 UI 中手动选择 webpack build enter image description here