chore: add pg gem for production environment
- Introduced the 'pg' gem for PostgreSQL support in the production environment. - Updated Gemfile to include it in the production group. - Corresponding update in Gemfile.lock to ensure version 1.5.9 is used. This change prepares the application to use PostgreSQL as the primary database in production, which is essential for running production-grade applications effectively.
This commit is contained in:
parent
34c05232ee
commit
5fd9573cf2
4
Gemfile
4
Gemfile
@ -61,6 +61,10 @@ group :development do
|
|||||||
gem "web-console"
|
gem "web-console"
|
||||||
end
|
end
|
||||||
|
|
||||||
|
group :production do
|
||||||
|
gem 'pg', '~> 1.5'
|
||||||
|
end
|
||||||
|
|
||||||
group :test do
|
group :test do
|
||||||
# Use system testing [https://guides.rubyonrails.org/testing.html#system-testing]
|
# Use system testing [https://guides.rubyonrails.org/testing.html#system-testing]
|
||||||
gem "capybara"
|
gem "capybara"
|
||||||
|
@ -241,6 +241,7 @@ GEM
|
|||||||
parser (3.3.7.0)
|
parser (3.3.7.0)
|
||||||
ast (~> 2.4.1)
|
ast (~> 2.4.1)
|
||||||
racc
|
racc
|
||||||
|
pg (1.5.9)
|
||||||
propshaft (1.1.0)
|
propshaft (1.1.0)
|
||||||
actionpack (>= 7.0.0)
|
actionpack (>= 7.0.0)
|
||||||
activesupport (>= 7.0.0)
|
activesupport (>= 7.0.0)
|
||||||
@ -434,6 +435,7 @@ DEPENDENCIES
|
|||||||
jbuilder
|
jbuilder
|
||||||
jsbundling-rails
|
jsbundling-rails
|
||||||
kamal
|
kamal
|
||||||
|
pg (~> 1.5)
|
||||||
propshaft
|
propshaft
|
||||||
puma (>= 5.0)
|
puma (>= 5.0)
|
||||||
rails (~> 8.0.1)
|
rails (~> 8.0.1)
|
||||||
|
Loading…
Reference in New Issue
Block a user