Ruby on Rails のTutorialやってみたよ動画アップしました!

https://railstutorial.jp/

https://railstutorial.jp/chapters/beginning?version=5.1#cha-beginning

やったコマンド

# rails install
sudo apt install rails

# ファル生成
rails _5.2.2_ new hello_app

# ディレクトリに移動
cd hello_app

# サーバー起動
rails server

# ファイル変更して、hello worldと出力できるように2つのファイルを変更
vi app/controllers/application_controller.rb
vi config/routes.rb


# git 関係 ( 下のメールアドレス使ってません、適当です)
git config --global user.name "NM Max"
git config --global user.email nmmax@123abcsoft.com

# 初期化
git init

# カレントディレクトリ以下のファイルを監視対象に
git add -A

# コミット -m の後の文字はコメント
git commit -m "Initialize repository"

# ファイル足したら、全部のファイルを監視対象に
git add -A

# log確認
git log

# status確認
git status

https://railstutorial.jp/chapters/toy_app?version=5.1#cha-a_toy_app

やったコマンド

#もう夜遅いので、後日追記します。

コメントを残す

メールアドレスが公開されることはありません。 が付いている欄は必須項目です