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:
songtianlun 2025-01-07 16:23:04 +08:00
parent 06c0e393e4
commit 8ba219c4c0
2 changed files with 6 additions and 0 deletions

View File

@ -73,3 +73,7 @@ end
gem "cssbundling-rails", "~> 1.4"
gem "jsbundling-rails", "~> 1.3"
group :production do
gem "pg", "~> 1.5"
end

View File

@ -245,6 +245,7 @@ GEM
parser (3.3.6.0)
ast (~> 2.4.1)
racc
pg (1.5.9)
propshaft (1.1.0)
actionpack (>= 7.0.0)
activesupport (>= 7.0.0)
@ -442,6 +443,7 @@ DEPENDENCIES
kamal
kaminari (~> 1.2)
minitest-reporters
pg (~> 1.5)
propshaft
puma (>= 5.0)
rails (~> 8.0.1)