https://github.com/krve/go-timetracker
A Go timetracker
https://github.com/krve/go-timetracker
go golang timetracking
Last synced: about 1 year ago
JSON representation
A Go timetracker
- Host: GitHub
- URL: https://github.com/krve/go-timetracker
- Owner: krve
- License: mit
- Created: 2019-02-25T08:31:01.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-03-15T10:59:31.000Z (about 7 years ago)
- Last Synced: 2025-01-14T03:47:31.083Z (about 1 year ago)
- Topics: go, golang, timetracking
- Language: Go
- Homepage:
- Size: 30.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://circleci.com/gh/krve/go-timetracker)
# Timetracker
This is a timetracker CLI app I am currently building to learn Go.
## Building
```
git clone git@github.com:krve/go-timetracker.git
cd go-timetracker
go get
go build
```
## Usage
```
USAGE:
timetracker [global options] command [command options] [arguments...]
COMMANDS:
list, l show the list of entries
clear clear all entries
reindex reindex all entires
sum sum all entires
delete delete the entry with the specified id
help, h Shows a list of commands or help for one command
GLOBAL OPTIONS:
--help, -h show help
--version, -v print the version
```
## Testing
```
git clone git@github.com:krve/go-timetracker.git
cd go-timetracker
go get
go test
```
## Contributing
I'm not accepting contributions as this is currently only for personal use. I may open up for contribution in the future.