- CRUD básico de heróis com front desacoplado
Ruby on Rails 6 course as an API creating a Heroes CRUD.
Ruby version | 2.7.2 |
Rails version | 6.1.x |
Database | SQLite3 (dev) / PostgreSQL (prod) |
# clone the project
git clone https://github.com/Moonjose/curso_heroes_api.git
# enter the cloned directory
cd curso_heroes_api
# install Ruby on Rails dependencies
bundle install --without production
# create the development and test databases
rails db:create
# create the tables
rails db:migrate
# run the project
rails s
The backend is available at http://localhost:3000
.