/Tareas-ruby

Una sencilla aplicación para gestionar tareas

Primary LanguageRuby

README

This README shows you how to install the system dependencies and specifies the steps to configure the haml generator.

Things to cover:

  • Ruby version

    • ruby 3.1.1p18 (Windows Environment)
  • System dependencies

    • Add the next gems into you gemfile

      • gem 'tzinfo-data'
      • gem 'tzinfo'
      • gem 'simple_form'
      • gem 'haml-rails'
      • gem 'annotate' to annotations on models
      • gem 'i18n-tasks', '~> 0.7.4' || i18n-tasks add-missing
      • gem 'rails-i18n'
    • After that, execute bundle install to install the dependencies.

  • Configuration

    • Execute rails generate simple_form:install --bootstrap to set by default the haml generator.
    • After that, you can see the files generated, with the .haml extension.

*Models Alt text

  • rails g scaffold Category name:string description:text

  • rails g scaffold Task name:string description:text due_date:date category:references

  • Database creation

    • This database runs into docker image, you can see the file docker-compose.yml, the file specify the images to run.
  • Database initialization

  • How to run the test suite

  • Services (job queues, cache servers, search engines, etc.)

  • Deployment instructions

  • ...