Skip to content
Snippets Groups Projects
Verified Commit ee970791 authored by ck85nori's avatar ck85nori :railway_track:
Browse files

flesh out README

parent b2e58107
Branches
No related tags found
No related merge requests found
# Time Tracking Analysis # Time Tracking Analysis
Analyze time tracking data.
## Dependencies
- JDK 8
- SQLite 3
- [Ammonite](http://www.lihaoyi.com/Ammonite/#Ammonite-REPL)
## Usage
1. Create a database for your **debit** work hours:
```
sqlite3 timetracking.db 'create table debit (day text primary key, hours real)'
```
2. Fill the database with your **debit** work hours:
```
sqlite3 timetracking.db 'insert into debit (day, hours) values ("2017-03-28", 8)'
```
3. Start analysis:
```
amm ttanalysis.sc timetracking.db export_all.csv
```
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment