1
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.

アプリの新規作成~ GitHubへの反映まで

Posted at

目的

  1. コマンドでアプリケーションを作成する
% cd ~/projects
% rails _6.0.0_ new reizoko-app -d mysql

ここで、database.ymlの「encoding: utf8mb4」を「encoding: utf8」へ変更する。

% cd reizoko-app
% rails db:create
  1. GitHubで管理する

GitHubで管理するために、新規アプリケーションのリポジトリを作成する。

① GitHub Desktopを用いてローカルリポジトリを作成する
② first commitというコミットメッセージでcommitする
③ アプリケーションと同名のリモートリポジトリを作成する
(publicにすると、他社がコードレビューできる。「Keep this private」のチェックを外すとできる。)
④ pushする

1
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
1
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?