2
3

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 について

Last updated at Posted at 2018-07-15

※ 雑まとめなので追記修正予定。。。:head_bandage:

#参考

Heroku入門 | ドットインストール
Heroku コマンド・設定 メモメモ
Heroku初心者がHello, Herokuをしてみる

インストール

homebrewからだと簡単 Heroku | Download and install

brew install heroku/brew/heroku

#Dyno
仮想サーバー。
負荷が増えた時にDynoを増やして対応したりする。
(無料の範囲で使用できるのは1つまで。)

#2Dynoに増やす
heroku ps:scale web=2

#Addon
Herokuには色々なアドオンが用意されており、インストールさせることで
容易に機能を追加することができる(アドオン利用にはクレジットカード登録が必要)

#確認
heroku addons
#アドオン追加
heroku addons:add アドオン名

Heroku Postgres

#静的ファイルコンテンツの扱い
Javascript``CSS``画像ファイルなどのコンテンツは
基本的に永続保存されないので外部サーバーなどに置いて、それを読込む設定が必要になってくる。

  • 画像アップロード機能などはCloudinary使うとか

Rails + cloudinary + carrier wave 画像アップロードアプリのテスト

2
3
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
2
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?