Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
b21dd04
Fixed: Error occured when running db:migrate the error is ActiveRecor…
sudogem Oct 12, 2025
8a4a3d0
Fixed: error in save() method the error is ActiveModel::ForbiddenAttr…
sudogem Oct 12, 2025
96a77ee
Added netlify.toml for netlify deployment
sudogem Oct 12, 2025
8c94415
Added package.json for netlify deployment
sudogem Oct 12, 2025
efb5cff
Removed netlify.toml, package.json
sudogem Oct 12, 2025
5888ee0
Fixed: removed pg in Gemfile for netlify deployment
sudogem Oct 12, 2025
4025ea9
Upgrade ruby from 2.7.6 to 3.1.0 for Render deployment; Upgrade rails…
sudogem Oct 12, 2025
d02e54b
Added pg in Gemfile
sudogem Oct 12, 2025
5c7e0fb
Added pg in Gemfile for Render deployment
sudogem Oct 12, 2025
bd98133
Merge branch 'migrate_ruby_3.1.0' into develop
sudogem Oct 12, 2025
1f3aeeb
Update config/secrets.yml
sudogem Oct 13, 2025
903403a
Merge branch 'migrate_ruby_3.1.0' into develop
sudogem Oct 13, 2025
ad4daef
Added config/credentials/production.yml.enc
sudogem Oct 13, 2025
ba9b73d
Merge branch 'migrate_ruby_3.1.0' into develop
sudogem Oct 13, 2025
56a123a
Added config/storage.yml
sudogem Oct 13, 2025
bc69cd1
Merge branch 'migrate_ruby_3.1.0' into develop
sudogem Oct 13, 2025
c329ac4
Added debug to display env
sudogem Oct 13, 2025
a1b3261
Removed debug to display env
sudogem Oct 13, 2025
c94a97f
Set config.assets.compile = true
sudogem Oct 13, 2025
53612c9
Set config.assets.js_compressor = Uglifier.new(harmony: true)
sudogem Oct 13, 2025
a9587be
Fixed: fix the config.assets.configure
sudogem Oct 13, 2025
1b4b1b4
Added privacy-policy page for FB Login API requirements
sudogem Oct 14, 2025
de31149
Added terms of use page for FB Login API requirements
sudogem Oct 14, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,5 @@ bower.json

# environment variables
.env

/config/credentials/production.key
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.7.6
3.1.0
13 changes: 10 additions & 3 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ git_source(:github) do |repo_name|
"https://github.com/#{repo_name}.git"
end

ruby '2.7.6'
# Upgrade ruby from 2.7.6 to 3.1.0 for Render deployment
# ruby '2.7.6'
ruby '3.1.0'

# Required gems for Heroku deployment
gem 'rails_12factor', group: :production
Expand Down Expand Up @@ -39,11 +41,16 @@ gem 'dotenv-rails', groups: [:development, :test]

# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
# gem 'rails', '~> 5.0.7' # working as of 5/30/2022
gem 'rails', '~> 5.2.7'

# 'rails', '~> 5.2.7' is not working in Ruby 3.1.0
# gem 'rails', '~> 5.2.7'
gem 'rails', '~> 7.2.0'

# Note: Heroku dont support sqlite3 so lets comment it out and use postgres
# gem 'sqlite3'
gem 'pg', '~> 0.21.0'

# Note: Netlify dont support pg so lets comment it out and use neon db
gem 'pg'

# gem 'mysql2', '~> 0.3.20'

Expand Down
Loading