https://github.com/tomasvotava/trello-clockify-connector
Connector for Clockify.me that feeds tasks from Trello
https://github.com/tomasvotava/trello-clockify-connector
api-rest clockify trello trello-api trello-board trello-card
Last synced: 2 months ago
JSON representation
Connector for Clockify.me that feeds tasks from Trello
- Host: GitHub
- URL: https://github.com/tomasvotava/trello-clockify-connector
- Owner: tomasvotava
- License: gpl-3.0
- Created: 2018-11-07T18:40:36.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-11-07T20:30:02.000Z (over 6 years ago)
- Last Synced: 2025-02-12T22:22:10.377Z (4 months ago)
- Topics: api-rest, clockify, trello, trello-api, trello-board, trello-card
- Language: Python
- Size: 20.5 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Trello-Clockify Connector
Connector for Clockify.me that feeds tasks from Trello.
As of now the connector has very limited functionality:1. List all cards on single Trello board.
2. List all tasks in single Clockify project.
3. Non-existing Clockify tasks are created.Optional
- Do not include Trello cards without tags (labels).
- Include tags (labels) in task name.## Configuration
See *sample-config.json* file for directives.**Note: The help system (-h, -trello, -clockify and -configure parameters) does not work for now.**
## Warning
**Keep your API keys and tokens as private as possible.**## Requirements
### Python 3
Found at [oficial website](https://www.python.org/)
### python-requests
Best installed via PIP
```
pip install requests
```
or
```
python3 -m pip install requests
```## Setting up as automatic cron job
- Make the script executable
```
chmod u+x feed.py
```- Open crontab
```
crontab -e
```- Add desired cron settings (e.g. run every 15 minutes):
```
*/15 * * * * /full/path/to/feed.py --config /full/path/to/config.json
```