Manage multiple projects, view stickies (tasks) in a calendar, receive reminder emails for stickies due, assign project members to stickies, create templates for series of stickies, receive emails and updates as stickies and groups of stickies are completed, assign project specific tags to stickies, generate reports on sticky tags. Using Rails 4.0+ and Ruby 2.0.0+.
Prerequisites Install Guide: Instructions for installing prerequisites like Ruby, Git, JavaScript compiler, etc.
Once you have the prerequisites in place, you can proceed to install bundler which will handle most of the remaining dependencies.
gem install bundlerThis readme assumes the following installation directory: /var/www/tasktracker
cd /var/www
git clone git://github.com/remomueller/tasktracker.git
cd tasktracker
bundle installInstall default configuration files for database connection, email server connection, server url, and application name.
ruby lib/initial_setup.rb
bundle exec rake db:migrate RAILS_ENV=production
bundle exec rake assets:precompileRun Rails Server (or use Apache or nginx)
rails s -p80Open a browser and go to: http://localhost
All done!
Edit Cron Jobs sudo crontab -e to run the task lib/tasks/reminder_email.rake
0 1 * * * source /etc/profile.d/rvm.sh && cd /var/www/tasktracker && /usr/local/rvm/gems/ruby-2.0.0-p0/bin/bundle exec rake reminder_email RAILS_ENV=productionExporting the Task Tracker Data Dictionary for use by Hybrid for dynamic reporting and searches
Edit Cron Jobs sudo crontab -e to export the data dictionary
30 1 * * * source /etc/profile.d/rvm.sh && cd /var/www/tasktracker && /usr/local/rvm/gems/ruby-2.0.0-p0/bin/bundle exec rake export_dictionary RAILS_ENV=productionIf you need to communicate with an instance of Task Tracker programmatically, take a look at the API Documentation for examples.
- Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet
- Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it
- Fork the project
- Start a feature/bugfix branch
- Commit and push until you are happy with your contribution
- Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
- Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.
Copyright (c) 2013 Remo Mueller. See LICENSE for further details.
