A user interface for timetracker - yet only serving statistics but may become an alternate UI for timetracker in the future.
# install dependencies
npm install
# set config
cp static/config.json.dist static/config.json
# serve with hot reload at localhost:8080
## *nix
TIMETRACKER_URL=https://timetracker.example.com npm run dev
## Windows PowerShell
$env:TIMETRACKER_URL="https://timetracker.example.com"; npm run dev
## Windows CMD
set TIMETRACKER_URL="https://timetracker.example.com"&&npm run dev
# build for production with minification
npm run build
# build for production and view the bundle analyzer report
npm run build --report