chore: add pg gem for production environment
- Include the pg gem in the production group of the Gemfile - Update Gemfile.lock to reflect the addition of pg version 1.5.9 This change adds support for PostgreSQL in the production environment, which is necessary for deploying the application with a PostgreSQL database. The addition of the pg gem ensures that the application can connect to and interact with the database as intended.
This commit is contained in:
parent
06c0e393e4
commit
8ba219c4c0
4
Gemfile
4
Gemfile
@ -73,3 +73,7 @@ end
|
|||||||
gem "cssbundling-rails", "~> 1.4"
|
gem "cssbundling-rails", "~> 1.4"
|
||||||
|
|
||||||
gem "jsbundling-rails", "~> 1.3"
|
gem "jsbundling-rails", "~> 1.3"
|
||||||
|
|
||||||
|
group :production do
|
||||||
|
gem "pg", "~> 1.5"
|
||||||
|
end
|
||||||
|
@ -245,6 +245,7 @@ GEM
|
|||||||
parser (3.3.6.0)
|
parser (3.3.6.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)
|
||||||
@ -442,6 +443,7 @@ DEPENDENCIES
|
|||||||
kamal
|
kamal
|
||||||
kaminari (~> 1.2)
|
kaminari (~> 1.2)
|
||||||
minitest-reporters
|
minitest-reporters
|
||||||
|
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