Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dtgoitia/t
A CLI wrapper for my most used Toggl entries
https://github.com/dtgoitia/t
Last synced: 25 days ago
JSON representation
A CLI wrapper for my most used Toggl entries
- Host: GitHub
- URL: https://github.com/dtgoitia/t
- Owner: dtgoitia
- Created: 2021-06-07T06:51:50.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-11-02T08:03:15.000Z (about 3 years ago)
- Last Synced: 2024-10-28T13:55:06.054Z (2 months ago)
- Language: Python
- Size: 22.5 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Set up
* Install:
```shell
git clone [email protected]:dtgoitia/t.git
cd t/# Create and activate Python virtual environment
python3 -m venv .venv
. .venv/bin/activate# install repo dependencies locally
make install
```* Configuration (mandatory):
At `~/.config/t/config.jsonc`:
```json
{
"projects": [
{
"id": 1234,
"name": "Name of the project",
"entries": ["Task 1", "Task 2"]
}
]
}
```* Credentials (mandatory):
At `~/.config/t/credentials.jsonc`:
```jsonc
{
// Get API token at https://track.toggl.com/profile
"toggle_api_token": "_____INSERT_API_TOKEN_HERE_____"
}
```