Basic app for notes / TODO list API to pratice TDD in RoR.
(This project is currently in development)
Clone down this repository. You will need ruby
2.7.2 installed globally on your machine, Postgres
database server or Docker
.
π Running with docker:
$ docker-compose up -d
π Running without docker:
$ bin/bundle install
$ bin/rails db:setup
$ bin/rails s -p 3000
π Mock Data
$ bin/rails db:generate_data_faker
π Tests:
$ bin/rspec
$ bin/rspec <test_folder>