Skip to content

Latest commit

 

History

History
32 lines (22 loc) · 1.34 KB

README.md

File metadata and controls

32 lines (22 loc) · 1.34 KB

Timewise is a simple time tracking system that provides a graphical way of viewing a daily plan and then capturing actual time spent.

Timewise can be used to support Peter Drucker's time analysis recommendations.

https://creativefollowership.com/peter-druckers-first-principle-of-time-management-2/

Two timegrids are displayed: Planning | Tracking

Clicking the timegrid adds an event, events can be resized and moved. Clicking on an event edits the title, dragging an event off the screen removes the event.

timewise_screenshot

Installation

  1. Clone the git repository git clone git@gitlab.com:stevewillson/timewise.git
  2. Change directory to the cloned repository cd timewise
  3. Install dependencies npm install
  4. Start a development server npm start
  5. Browse to localhost:3000 to use timewise

Package to a single index.html file

  1. Clone the git repository git clone git@gitlab.com:stevewillson/timewise.git
  2. Change directory to the cloned repository cd timewise
  3. Install dependencies npm install
  4. Build the application npm run build
  5. Generate the single index.html file: npx gulp
  6. The generated file is located at: ./build/index.html
  7. Open this file locally on a computer with a web browser to use timewise without connecting to the internet