/tasks_app

Software for create tasks using machine learning technique.

Primary LanguageRubyMIT LicenseMIT

Initial Setup

Setup the required Environment Variables

Install all Rails dependencies. Inside the project root run:

bundle install
Setup the Environment Variables

Create a new file named .env.development.local

cp .env .env.development.local
cp .env .env.test.local
Change env variables
RAILS_ENV=YOUR ENV (development, staging or test)
Setup Database
rails db:{drop,create,migrate}
Run seed data
rails seed:migrate
Run local server (with -b to allow external access, see at: http://localhost:3000)
rails s -b 0.0.0.0
Run RSpec tests
rspec