This app makes use of json-server to function as the database of a rails app.
It is a mock job board that keeps track of users' interest in various jobs and allows employers to post new openings.
- clone git repo
- In the root project folder, run:
gem install bundler
bundle install
rake db:create && db:migrate
npm install -g json-server
- In the root project folder, run:
json-server --watch data.json
- In a new terminal tab, run:
rails s -p 3500
- You can now visit the job board at localhost:3500