Skip to content

Latest commit

 

History

History
26 lines (17 loc) · 1.31 KB

README.md

File metadata and controls

26 lines (17 loc) · 1.31 KB

I made this to see what I can make in a week with zero web engineering experience. It took me ten days. www.tusktimer.com is where a copy of the code lives.

ToDo: the up/down arrows and the clocks don't work on iOS. Need to figure out why. Probably worker threads?(Notifications are apparently not defined in iOS.)
ToDo: statistics page to show graphs and also export data as CSV

TaskTimer

A timer app that prominently features the overall time spent on tasks. Using PHP, JavaScript, JQuery and MySQL.

To run on your machine do the following:

  • Set up a database with the following tables:

Table users with
Screen Shot 2022-08-28 at 21 41 18

Table tasks with
Screen Shot 2022-08-28 at 21 41 35

Table tasklog with
Screen Shot 2022-08-28 at 21 41 56

  • Edit the following variables in DBHandler.php

$dbname = "your database name";
$username = "your username";
$password = "your password";