Books management application (API)
- Ruby 3.0.2
- Rails 6.1+
- Postgresql 13+
Clone the repo.
git clone https://github.com/warshavski/booky-api.gitcd into the directory and install the reqirements.
cd booky-api && bundle installset up the database
rake db:create
rake db:migrate
rake db:seedStart the server
rails sRunning all tests.
bundle exec rspecRunning a specific test file
bundle exec rspec ./spec/path/to/fileSetup the project
make setupStart the application server
make upRun specs
make testRun console
make console