Go to file
Suraj 55bf96af43 updated readme 2016-01-30 09:44:36 +05:30
config gofmt on main and config 2016-01-23 16:04:33 +05:30
db randomized filenames & stored them in db 2016-01-29 22:36:49 +05:30
public bullets removed for markdown tasks 2016-01-29 22:36:26 +05:30
types added priority to tasks 2016-01-23 19:17:34 +05:30
views randomized filenames & stored them in db 2016-01-29 22:36:49 +05:30
Front End 2.png added additional info 2015-11-15 22:04:21 +05:30
Front End.png added additional info 2015-11-15 22:04:21 +05:30
License.txt added additional info 2015-11-15 22:04:21 +05:30
README.md updated readme 2016-01-30 09:44:36 +05:30
config.json added config.json 2016-01-23 19:14:37 +05:30
main.go randomized filenames & stored them in db 2016-01-29 22:36:49 +05:30
schema.sql added priority to tasks 2016-01-23 19:17:34 +05:30

README.md

Tasks

Tasks is a simplistic golang webapp to manage tasks, I built this tool to manage tasks which I wanted to do, there is a good kanban style boards, but I felt they were a bit too much for my taste. Also I wanted to learn the golang webapp.

Features:

  1. Add, update, delete task
  2. Search tasks, the query is highlighted in the search results page
  3. We use github flavoured markdown, which enables us for using a task list, advanced syntax highlighting and much more
  4. Supports file upload, randomizes the file name, stores the user given filename in a db and works on the randomized file name for security reasons.

How you install?

  1. go get github.com/thewhitetulip/Tasks
  2. change dir to the respective folder and create the db file: cat schema.sql | sqlite3 tasks.db
  3. run go build
  4. ./Task
  5. open localhost:8080

Either this or download the latest from the release tab above and enjoy!