documentation
- https://kmosc.github.io/APITRY/
- I've dedicated my time to develop that API during Monterail Rubycamp.
The App uses multiple gems, You can find its list in Gemfile.
Clone the project via command.
git clone https://github.com/KMosc/APITRY.gitMake sure You have your Ruby installed and its version equals 3.0.0
ruby -vInstall all needed gem files
bundle installDatabase commands
### Initialize your rails databse
rails db:create
### Run database migration
rails db:migrate
### If you want sample datas, run
rails db:seedhttps://support.google.com/accounts/answer/185833?hl=en
Look into /config/environments/ and initialize environment variables accordingly to email config.
Change default mailers in mailer files.# Development mode
rails s
# Production mode
rails s -e productionCOVERAGE=true rspec spec