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 1 year has passed since last update.

アプリ作成・GitHubへPushまでの流れ

Posted at

1.クラウド9でアプリを作成

下記コードでRailsアプリケーションのディレクトリが作成される

rails new アプリ名

2.複数のホストから閲覧可能にする

rails sでサーバー起動してもエラーが発生するため、下記コードで閲覧可能にする

/config/enviroments/development.rb
Rails.application.configure do
    :
  config.hosts.clear #追記
end

3.GitHubにPushする

1.ローカルリポジトリを作成する

cloud9
git init

2.GitHubでリモートリポジトリを作成する
3.ディレクトリ/ファイルの変更履歴を保存する

git add .
git commit -m "[Start] アプリ名(例)"

4.ローカルリポジトリとリモートリポジトリを紐づける

git remote add origin リモートリポジトリURL

5.masterブランチをmainブランチに変更する

git branch -M main

6.リモートリポジトリへPushする

git push origin main
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?