Use PostgreSQL in production
This commit is contained in:
parent
410e5109ab
commit
2478f0cf33
5
Gemfile
5
Gemfile
|
@ -22,4 +22,7 @@ group :development do
|
||||||
gem 'capistrano3-puma'
|
gem 'capistrano3-puma'
|
||||||
end
|
end
|
||||||
|
|
||||||
gem 'puma', group: :production
|
group :production do
|
||||||
|
gem 'puma'
|
||||||
|
gem 'pg'
|
||||||
|
end
|
||||||
|
|
|
@ -94,6 +94,7 @@ GEM
|
||||||
net-ssh (3.0.1)
|
net-ssh (3.0.1)
|
||||||
nokogiri (1.6.6.2)
|
nokogiri (1.6.6.2)
|
||||||
mini_portile (~> 0.6.0)
|
mini_portile (~> 0.6.0)
|
||||||
|
pg (0.18.3)
|
||||||
pry (0.10.2)
|
pry (0.10.2)
|
||||||
coderay (~> 1.1.0)
|
coderay (~> 1.1.0)
|
||||||
method_source (~> 0.8.1)
|
method_source (~> 0.8.1)
|
||||||
|
@ -171,6 +172,7 @@ DEPENDENCIES
|
||||||
coffee-rails
|
coffee-rails
|
||||||
jbuilder
|
jbuilder
|
||||||
jquery-rails
|
jquery-rails
|
||||||
|
pg
|
||||||
pry-rails
|
pry-rails
|
||||||
puma
|
puma
|
||||||
rails (= 4.2.4)
|
rails (= 4.2.4)
|
||||||
|
|
Loading…
Reference in New Issue