Time management app based around a calendar interface.
The app lives in the browser and is designed to be used as a PWA. There is no cloud storage, all data is stored locally in the browser and stays private. You can connect it to a CouchDB server for syncing between devices.
If you like the project, please consider contributing. The project is in early stages and there is a lot of work to be done.
This is a work in progress, but the following features are planned:
- Calendar view
- Task list
- Project list
- Timer
- Ical import
- CouchDB sync
- Metrics
- Offline support
- All event fields
- WSYWIG editor
- Automated task scheduling
VSCode + Volar (and disable Vetur) + TypeScript Vue Plugin (Volar).
TypeScript cannot handle type information for .vue
imports by default, so we replace the tsc
CLI with vue-tsc
for type checking. In editors, we need TypeScript Vue Plugin (Volar) to make the TypeScript language service aware of .vue
types.
If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a Take Over Mode that is more performant. You can enable it by the following steps:
- Disable the built-in TypeScript Extension
- Run
Extensions: Show Built-in Extensions
from VSCode's command palette - Find
TypeScript and JavaScript Language Features
, right click and selectDisable (Workspace)
- Run
- Reload the VSCode window by running
Developer: Reload Window
from the command palette.
See Vite Configuration Reference.
Install Node.js and npm.
npm run setup
npm run dev
npm run build
Run Unit Tests with Vitest
npm run test:unit
Lint with ESLint
npm run lint
Install by following the PouchDB Server instructions.
Run with:
pouchdb-server --port 5984
npm run build
docker-compose up -d
You can now access the app at http://localhost:6982
docker-compose down