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

rails new ~すべてのはじまり~ ❏Rails❏

Last updated at Posted at 2019-12-08

初心に戻ろうシリーズ。
すべての生みの親。
ゼウス・アマテラス・rails new

ターミナル
$ rails new manbow

このコマンドだけでアプリ開発の土台となるファイルを自動で一括生成してくれます。

#データベース指定
デフォルトではsqlite

ターミナル
$ rails new manbow -d mysql

#バージョン指定
デフォルトでは最新バージョン

ターミナル
$ rails _5.2.1_ new manbow

#rails new ~その後~

・基本の流れは以下です。

1.rails newコマンドで新規railsアプリを作成
2.作成されるGemfileを編集
3.bundle installコマンドを実行
4.rails db:createコマンドでデータベースを作成
5.routes.rbファイルにルーティングを定義
6.その他必要なファイルの作成 ...


思い立ったらrails new
天気が良いからrails new
彼女に振られたらrails new

減るもんじゃないので気軽にガンガンrails newしちゃっていいと思います!


参考 >https://www.pikawaka.com/rails/create_app
ではまた!
1
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
1
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?