Conversation
| gem "devise" | ||
| gem "pundit" | ||
| gem "cancancan" | ||
| gem "sidekiq" | ||
| gem "sidekiq-cron" | ||
| gem "redis" | ||
| gem "grape" |
There was a problem hiding this comment.
Are we using these gems in this project now? Keeping a list of necessary gems is good, but I think it’s better to add a gem when we actually need it
There was a problem hiding this comment.
Bhai, Removed unnecessary gems
|
|
||
| development: | ||
| <<: *default | ||
| database: job_portal_development |
There was a problem hiding this comment.
Can we get the database name through ENV variables?
There was a problem hiding this comment.
Bhai, i have added .env file and fetched the database name from ENV variable.
| gem "tailwindcss-rails" | ||
| gem "kaminari" | ||
| gem "dotenv-rails" | ||
| gem "email_validator" | ||
| gem "phony_rails" | ||
| gem "mini_magick" | ||
| gem "rubocop", "~> 1.80", require: false | ||
| gem "groupdate" |
There was a problem hiding this comment.
Can we move these gems to the top of the group :development, :test do block and arrange them in alphabetical order?
There was a problem hiding this comment.
Bhai, i have done it.
please check: 6f993b9
thank you.
| # Do not set this db to the same as development or production. | ||
| test: | ||
| <<: *default | ||
| database: <%= ENV.fetch("POSTGRES_DATABASE_TEST", "job_portal_test") %> |
There was a problem hiding this comment.
Can you please add a .env.example file that lists the environment variable names used in your project?
There was a problem hiding this comment.
Bhai, i have added .env.example including the env variable names.
please check: 6f993b9
thank you.
Project Initialization & Setup
Trello Ticket: Project Initialization & Setup
Description
Initial Rails project setup with required gems, database configuration, and basic project structure. This PR lays the foundation for all subsequent development tasks.
Changes