temiy / tasker

Tasks management system (Lua/Luv/MySQL)

This URL has Read+Write access

tasker /
name age message
file .gitignore Loading commit data...
file README
directory app/
directory css/
directory images/
file index.lua
directory js/
directory templates/
README
Tasker ver.0.5alpha
===================

Tasker is tasks management web-service. Tasker is designed for not big
teams (up to 20-30 people).

Features
--------
* Almost total AJAX interface.
* Log of changes.
* Powerful filters.
* Email notifications.
* Reports.

How to install
--------------
1. Create /config.lua with configuration variables, example:
------------------------------------------------------------------------
-- where to store POST temporary files
tmpDir = "/var/tmp"
-- where to store sessions' files
sessionsDir = "/var/www/sessions"
-- DB connection string
dsn = "mysql://tasker:passTasker@localhost/tasker"
-- unique salt for passwords (keep it secret)
secretSalt = "asd*#35&5sfds#!a*&@fknd^f8572@2rg6#2,ei||32fbDHWQ&*$^"
-- [optional, default is localhost] mail server host
mailServer = "mail.gmail.com"
-- email notifier "From" field
mailFrom = "tasker.notifier@example.com"
------------------------------------------------------------------------
2. Give rights on write to tmpDir & sessionsDir.
3. Uncomment and edit the reinstall section in app/urls.lua (change
administrator's name & password at least).
4. Reinstall the system, go to http://<tasker base url>/reinstall.
5. Comment the reinstall section back.