Tasks/README.md

21 lines
957 B
Markdown
Raw Normal View History

2015-11-16 00:34:21 +08:00
# 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:
2016-01-30 12:14:36 +08:00
1. Add, update, delete task
2. Search tasks, the query is highlighted in the search results page
2016-01-29 00:14:40 +08:00
3. We use github flavoured markdown, which enables us for using a task list, advanced syntax highlighting and much more
2016-01-30 12:14:36 +08:00
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.
2015-11-16 00:34:21 +08:00
How you install?
==================
1. `go get github.com/thewhitetulip/Tasks`
2015-11-23 03:49:08 +08:00
1. change dir to the respective folder and create the db file: `cat schema.sql | sqlite3 tasks.db`
1. run `go build`
2016-01-29 00:14:40 +08:00
1. `./Task`
2015-11-23 03:49:08 +08:00
1. open [localhost:8080](http://localhost:8080)
2015-11-16 00:34:21 +08:00
2016-01-30 12:14:36 +08:00
Either this or download the latest from the release tab above and enjoy!