2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

herokuでruby 2.3系を動かす

Posted at

通常通りにheroku createでアプリを作成するとHeroku-18というものが入るらしくこやつがruby2.3系に対応していないらしい。

やったこと

  • プロジェクトにapp.jsonファイルを作成して中に"stack": "heroku-16"を記述
  • curlでherokuのアプリを作成

コマンド

curl -n -X POST https://api.heroku.com/app-setups \
-H "Content-Type:application/json" \
-H "Accept:application/vnd.heroku+json; version=3" \
-d '{"source_blob": { "url":"https://github.com/アップしたいリポジトリ名/tarball/master/"} }'

そうするとidがついたresponseが返ってきます。そこからidをいただいて

curl -n https://api.heroku.com/app-setups/レスポンスに含まれるid \
-H "Content-Type:application/json" \
-H "Accept:application/vnd.heroku+json; version=3"

とします。今回のレスポンスに

output_stream_url

というのがあるのでそこからdeployのログを追うことができます。

app.jsonファイルを作ってなかったりするとレスポンスのエラーメッセージにファイルがないよと教えてくれるのでわかります。
ruby2.3を使うことは少ないかもしれませんがメモとして残します。

2
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?