temiy / tasker
- Source
- Commits
- Network (1)
- Issues (0)
- Downloads (0)
- Wiki (1)
- Graphs
-
Tree:
e42ae27
commit e42ae27e9a0cf06cde9d07445cec57121a3055b3
tree 4e13c2228286caa2770f8120c8bb729ca6823025
parent 3e990e29c5940b1ccec0b495873eace94b446f92
tree 4e13c2228286caa2770f8120c8bb729ca6823025
parent 3e990e29c5940b1ccec0b495873eace94b446f92
tasker /
| name | age | message | |
|---|---|---|---|
| |
.gitignore | ||
| |
README | ||
| |
app/ | ||
| |
css/ | ||
| |
images/ | ||
| |
index.lua | ||
| |
js/ | ||
| |
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.

