theapsgroup / steampipe-plugin-clickup

Use SQL to instantly query ClickUp tasks, goals and more. Open source CLI. No DB required.

Home Page:https://hub.steampipe.io/plugins/theapsgroup/clickup

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ClickUp plugin for Steampipe

Use SQL to instantly query ClickUp tasks, goals and more. Open source CLI. No DB required.

Quick start

Install the plugin with Steampipe:

steampipe plugin install theapsgroup/clickup

Setup the configuration:

vi ~/.steampipe/config/clickup.spc

or set the following Environment Variables

  • CLICKUP_TOKEN : The API Key / Token to use.

Run a query:

Interactive Mode:

select
  id,
  name,
  color
from
  clickup_team;

or from CLI:

steampipe query "select id, name, color from clickup_team"

Developing

Prerequisites:

Clone:

git clone https://github.com/theapsgroup/steampipe-plugin-clickup.git
cd steampipe-plugin-clickup

Build, which automatically installs the new version to your ~/.steampipe/plugins directory:

make

Configure the plugin:

cp config/* ~/.steampipe/config
vi ~/.steampipe/config/clickup.spc

Try it!

steampipe query
> .inspect clickup

Further reading:

Contributing

Please see the contribution guidelines and our code of conduct. All contributions are subject to the Apache 2.0 open source license.

help wanted issues:

About

Use SQL to instantly query ClickUp tasks, goals and more. Open source CLI. No DB required.

https://hub.steampipe.io/plugins/theapsgroup/clickup

License:Apache License 2.0


Languages

Language:Go 99.3%Language:PLSQL 0.4%Language:Makefile 0.3%