Skip to content

karinevieira/todo-app

Repository files navigation

Todo App

Building a Todo App using Ruby on Rails 7, Hotwire and Stimulus.

Ruby 3.1.2
Rails 7.0.2.3
Node 16.14.2
NPM 8.5.0
Yarn 1.22.18
Database PostgreSQL

Setup

  # clone the project
  git clone [email protected]:karinevieira/todo-app.git

  # enter the cloned directory
  cd todo-app

  # install Node dependencies
  yarn install

  # create the development and test databases
  rails db:create

  # migrate tables to database
  rails db:migrate

  # run the project
  bin/dev

Open the browser at the address http://localhost:3000

Running Tests

To run tests, run the following command

  bundle exec rspec