9
9

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 5 years have passed since last update.

今更ながらHerokuで"Hello World"が表示してみた

Posted at

「herokuとは」でぐぐる

いまときのレンタルサーバーやいまどきのホームページスペースとのこと。

ものは試し

ユーザ登録と簡単なインストールをすれば、herokuコマンドを使って
heroku上にデプロイできるらしい。

ユーザ登録

メールアドレス入力後、メールで送られてくるアカウント活性化URLを選択する

Dashboardの指示通りにセットアップ

1.Download Heroku Toolbelt for Mac OSでHerokuをインストールする
2.サンプル・アプリケーションをcloneする

git clone git://github.com/heroku/ruby-sample.git

3.鍵の設定

~/.ssh.config
HOST heroku.com
    User git
    HostName heroku.com
    identityfile ~/.ssh/id_rsa_heroku

4.herokuにログインする

cd ruby-sample
heroku login
Email: kkam0907@japan.com
Password: your-password

5.herokuを作成する

heroku create

Creating floating-hollows-2171... done, stack is cedar
http://floating-hollows-2171.herokuapp.com/ | git@heroku.com:floating-hollows-2171.git

6.herokuサーバへデプロイする

git push heroku master

7.デプロイされたか確認する

heroku open

スクリーンショット 2014-07-23 18.58.02.png

9
9
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
9
9

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?