Skip to content

Moonjose/HeroesList_Api_RB

Repository files navigation

Funcionalidades do projeto

  • CRUD básico de heróis com front desacoplado

Dev Informations

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)

Initial settings to run the project

# 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.