kkpoon / acectl

ACE Project cli

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

acectl - ACE Project command line control

Github All Releases GitHub (pre-)release

Install

Download Binary

You could download binary from github release page

Build It Yourself

  1. You have to install golang
  2. Install dep
$ dep ensure
$ go build
$ ./acectl help

usage

Login

The login command helps you to get the authentication token from ACEProject and store it in your home directory, default: $HOME/.acectl.json

$ acectl login

Timesheet

# list the task belongs to you, find the task id of your task
$ acectl task list
# Log time to timesheet on task id=12345, mon=8, tue=8..., sat=0, sun=0
$ acectl timesheet input --hours 8,8,8,8,8,0,0 -t 12345
saved at Timesheet Line ID: 7689
# oh no, the time is not correct, lets update it
$ acectl timesheet input --hours 0,7,0,0,0,0,0 -t 12345 -u 7689

More usage

$ acectl help

About

ACE Project cli

License:MIT License


Languages

Language:Go 96.2%Language:Makefile 3.8%