0
0

More than 1 year has passed since last update.

Ruby on Rails Webアプリケーションの雛形を作ろう

Posted at

アプリケーションを立ち上げるときのコマンド

条件

  • Railsのバージョンは6.0.0を用いる
  • アプリケーション名は、「output_projects」
  • データベース管理システムにMySQLを使用する
rails _6.0.0_ new output_projects -d mysql

データベースを作成するためのコマンド

rails db:create

サーバーサイドは、アプリケーションとデータベースがセットで存在しています。

アプリケーションにおいて、データベースは必要不可欠なものです。

ローカルサーバーを起動するコマンド

rails s

sはサーバーのsです。

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