https://github.com/lallassu/doit
Simple Todo List - Wunderlist Replacement
https://github.com/lallassu/doit
go golang todo todo-app todo-list todolist vue wunderlist
Last synced: about 1 year ago
JSON representation
Simple Todo List - Wunderlist Replacement
- Host: GitHub
- URL: https://github.com/lallassu/doit
- Owner: Lallassu
- License: mit
- Created: 2020-04-04T15:43:01.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2024-12-12T07:10:22.000Z (over 1 year ago)
- Last Synced: 2025-03-24T13:11:15.631Z (over 1 year ago)
- Topics: go, golang, todo, todo-app, todo-list, todolist, vue, wunderlist
- Language: Vue
- Size: 12.2 MB
- Stars: 85
- Watchers: 3
- Forks: 18
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# DoIT Todo List
This is a simple todo-list made with Vue(frontend) and a simple webserver written in Go(backend).

Note that this started out as a simple hack and the source code probably requires some polishing. Use at your own risk.
The vue part was based and inspired by https://github.com/webnoobcodes/vuejs-todoapp.
## Features
* Multi-user support
* Share lists with other users
* Add reminders for items (sent via mail)
* Add notes to items
* Complete an item but still be able to view it.
* Sort items (optimises the shopping for shopping lists!)
* Delete items
* Multiple lists
* Favorite list (that shows first when accessing)
* Phone support (Using PWA features)
* Desktop support (webpage)
* Update "live" when someone else adds stuff.
* TLS support
* SQLite database (easy to backup)
* Self-hosted
* Simple admin interface
- Validate new users
- Remove access tokens
- Remove users
## Usage & Requirements
* In order to send email reminders you need to use a mailserver. I use postfix locally.
* You need to run DoIt with TLS if you want to be able to use phone app.
* First site access will allow for admin creation!
* All new accounts must be validated by admin before being able to login.
Create a tarball with binary and distribution build.
```
make dist
```
Run from the dist build:
```
./doit -tlscert server.crt -tlskey server.key -mailhost localhost:25 -database my.db
```
Run without TLS:
```
./doit -skiptls
```
## Development
Development environment (requires TLS certificates, see makefile):
```
make dev
```
## Todo
* Add support for push notification
* Throttle signup/login requests better.
* Code cleanup for both backend and frontend.
* Packaging
* Structure backend after best practices
## Screenshots







# License
MIT