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.

ローカルで動作をさせるまでに必要なコマンド

Last updated at Posted at 2020-10-28

#環境
この記事ではmacOS Catalina10.15.6にインストールしたRuby 2.6.5を使っています。

#目的
git cloneしてから、ローカルで動作をさせるまでに必要なコマンドを入力します。

結論

以下のコマンドを入力することで、クローンしたアプリを使用できるようになります。
※リモートリポジトリのURLとアプリケーションのディレクトリを確認してから行ってみてください。

% git clone <リモートリポジトリのURL>
% cd アプリケーションのディレクトリ
% bundle install
% yarn install
% rails db:create
% rails db:migrate
% rails s

最後に

最後までお読みいただきありがとうございます!
GitHubを使用している方のお役に立てれば幸いです!

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?