0
0

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 1 year has passed since last update.

railsのトップページを表示するまで

Last updated at Posted at 2021-11-22

 毎回railsのトップページを表示させるまで、必ずどこかでエラーが発生するので記録しておきます。
 ※動作はCloud9、DBはMySQLで実施しています。

#1.railsの新規作成

$ rails new アプリケーション名 -d mysql

ここでDBを指定しない場合は

$ rails new アプリケーション名

#2.database.ymlのパスワード入力
confingディレクトリのdatabase.ymlのpasswordを入力

default: &default
  adapter: mysql2
  encoding: utf8
  pool: 5
  username: root
  password: パスワード
  socket: /var/lib/mysql/mysql.sock

パスワードは直接入力するとセキュリティ上問題が発生するおそれがあるため、環境変数を推奨。

#3.データベースの新規作成

$ cd アプリケーション名

でディレクトリを変更した後に

$ rails db:create

を実行。

#4. サーバーの起動
新たにターミナルを立ち上げてから

$ cd アプリケーション名

でディレクトリを変更、

rails server

を実行。

#5.プレビュー
Cloud9の場合は
Inked2021-11-18 (3)_LI.jpg
このボタンを押して、ブラウザで開くと・・・
2021-11-22.png
railsのトップページが開きました!

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?