Peresh - is the simple tracker for personal affairs. Task tracking and managment. To do lists.
Peresh has 2 work mode:
- Local - all data save in browser
- Dropbox - auth in your Dropbox account and auto sync all data with local data (in browser) and data in dropbox
Implemented features:
- Create, delete, update tasks
- Transfer to different statuses
- Markdown markup of the task summary
- Progress bar with color-coded time to completion date
- Custom statuses
- Integration with dropbox for storing tasks
- Two interface languages
- Light/Dark theme
- Export/Import
tasks.json
- To do list
docker build -t peresh .
docker run -d \
-p 8080:80 \
-e DropBoxClientId=[ClientId] \
--restart always \
--name peresh \
eluki/peresh:latest
version: '3.8'
services:
web:
image: eluki/peresh:latest
environment:
- "DropBoxClientId=[ClientId]"
ports:
- 8080:80
deploy:
replicas: 1
resources:
limits:
memory: 25M
placement:
max_replicas_per_node: 1
restart_policy:
condition: on-failure
and cli command:
docker stack deploy -c deploy.yml peresh