The project use Rails API and also React for displaying the API's in real environment
NodeJS, Rails, Ruby
Installing gem files for Rails API && Doing migrations
bundle install
rails db:migrate
And also intalling our client app's packages
cd client && npm install
The API runs on port 3000 by default. And client app runs on port 8000 by default.
To open rails server
rails s
To open client app
cd client && npm start
Tests are made using RSpec
bundle exec rspec
This project is licensed under the MIT License