1
1

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.

環境構築手順

Last updated at Posted at 2016-06-06
1 / 3

#環境構築手順

##Rubyなどのインストール

rubyバージョン確認
$ ruby --v

インストール可能一覧
$ rbenv install --list

インストール済み一覧
$ rbenv versions

ruby 2.3.0をインストール
$ rbenv install -v 2.3.0

再読み込み
$ rbenv rehash

rubyを最新版に設定
$ rbenv global 2.3.0

bundlerのインストール
$ gem install bundler

bundler
Railsアプリケーションに必要となるGemパッケージの種類やバージョンを管理し、複数のPCで必要なGemパッケージをインストールする仕組みのこと
 
bundlerのインストール、Gem fileを作成したディレクトリで実行を行う
(参照:http://www.rubylife.jp/rails/ini/index2.html)

##アプリケーション環境構築

gemのインストール
$ bundle install
 Gem、Gemパッケージ
Rubyで使われるライブラリやアプリケーションはGemと呼ばれる形式のパッケージにすることが出来る


データベースの生成

create
$ bundle exec rake db:seed
$ bundle exec rake db:migrate```

railsサーバーの起動
```$bundle exec rails s ```

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?