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 3 years have passed since last update.

Railsでアプリを新規作成する

Posted at

#備忘録としてRailsでアプリを新規作成する手順をまとめる。

まずアプリケーション作成するのに Rails new コマンドを使用する。

データベースはMySQL使用。コマンドオプションに -d mysql を末尾に書く
_6.0.0_はバージョン

ターミナル
% rails _6.0.0_ new アプリ名 -d mysql

これで新規アプリができる。

config/database.yml 

# encoding: utf8mb4を

encoding: utf8  に変更
これは保存形式の変更をする為

データベース作成
アプリと紐ずくデータベースを作るために以下を実行

ターミナル
% rails db:create

rails s で作動すればOK

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?