/tasks

The World needs another todo list app. This one is mine!

Primary LanguageRuby

All TODO lists suck. This one sucks less.

out

Technical stack

This project is build with Ruby on Rails. It is heavily AJAXified and leverages turbolinks, jquery-ujs and Server-generated JavaScript Responses (SJR). To put it straight: I REALLY like SJR. This concept is awesome, powerful and really easy to use.

Local development setup

git clone https://github.com/mrhead/tasks
cd tasks
bundle install
rake db:create db:setup # you need postgresql installed
rails s

Go to http://localhost:3000 and log in as user@example.com with password password.

Deploying to heroku

git clone https://github.com/mrhead/tasks
cd tasks
heroku apps:create [your-app-name]
git push heroku master
heroku run rake db:migrate
heroku open