😕

Railsチュートリアル

2024/08/15に公開

railsチュートリアルを実施しています。
つまずいた事や気づきを残します。

1章

EDITOR="mate --wait" bin/rails credentials:edit
For editors that fork and exit immediately, it's important to pass a wait flag,
otherwise the credentials will be saved immediately with no chance to edit.

解決:ターミナルで以下を入力しvimを閉じる
EDITOR="vim" bin/rails credentials:edit

  • 初めてのrenderでデプロイが失敗
    settingを自分で行う必要あり手順が足りていなかった。

解決:以下Renderの公式ページを参考にrender_build.shを作成
https://docs.render.com/deploy-rails

以下設定でデプロイできました。(DBは未構築)


そのた参考

git

Discussion