A simple Vue-based time tracker.
I built this tool to help me record time spent on tasks at work without
too much faff. There is currently no server-side component; all of your
data is stored in your web browser using the Web Storage API’s
localStorage
mechanism.
This project uses Vite to build the project, so the usual incantations apply.
If you have Task installed, you can build the project from a fresh copy of the source code with:
$ task dependencies:javascript
$ task build:frontend
As there is no server-side component, the time tracker front-end can be served with your server of choice. For convenience, you can create a redbean server that serves the time tracker front-end:
$ task dependencies
$ task build
$ # Start the server with "./timetracker.com"
$ # See <https://redbean.dev/#install> for help and troubleshooting.
Use task --list
to see the full list of available tasks for this
project. If you do not have Task installed, the provided Taskfile.yml
is fairly readable if you want to see what commands are being used.