{"id":20530649,"url":"https://github.com/juandspy/friendlierjira","last_synced_at":"2026-05-18T15:09:34.981Z","repository":{"id":196834534,"uuid":"697235636","full_name":"juandspy/friendlierjira","owner":"juandspy","description":"A tool to run SQL queries and build dashboards on Jira","archived":false,"fork":false,"pushed_at":"2023-11-24T10:06:21.000Z","size":212,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-01-16T12:38:32.332Z","etag":null,"topics":["jira","project-management","sql","steampipe","streamlit"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/juandspy.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-09-27T10:22:29.000Z","updated_at":"2023-10-10T01:49:02.000Z","dependencies_parsed_at":null,"dependency_job_id":"c8ea9939-dd61-4eb0-ad70-3dfabbd8d968","html_url":"https://github.com/juandspy/friendlierjira","commit_stats":null,"previous_names":["juandspy/friendlierjira"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/juandspy%2Ffriendlierjira","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/juandspy%2Ffriendlierjira/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/juandspy%2Ffriendlierjira/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/juandspy%2Ffriendlierjira/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/juandspy","download_url":"https://codeload.github.com/juandspy/friendlierjira/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":242135324,"owners_count":20077443,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["jira","project-management","sql","steampipe","streamlit"],"created_at":"2024-11-15T23:39:38.323Z","updated_at":"2026-05-18T15:09:29.962Z","avatar_url":"https://github.com/juandspy.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Friendlier Jira\n\nThe goal of this tool is to provide a friendly UI to run SQL queries and\nbuild dashboards.\n\nThe project is built on top of: \n- [Steampipe](https://github.com/turbot/steampipe)\n- [Streamlit](https://github.com/streamlit/streamlit)\n\n\u003e **DISCLAIMER**: due to a [bug in the Steampipe Jira plugin](https://github.com/turbot/steampipe-plugin-jira/pull/86/commits/6121a8a5faa17c186c58d78c2086a1a3de25da3c), most of the tables are currently unusable with self hosted Jira instances. Also, some queries may need a couple of minutes to complete.\n\n## Screenshots\n\n\u003cdetails\u003e\n\u003csummary\u003eRun custom queries\u003c/summary\u003e\n\u003cbr\u003e\n\n![Custom queries](docs/static/custom_queries.png)\n\n\u003c/details\u003e\n\n\u003cdetails\u003e\n\u003csummary\u003eCreate custom dashboards\u003c/summary\u003e\n\u003cbr\u003e\n\n![Custom dashboards](docs/static/custom_dashboards.png)\n\n\u003c/details\u003e\n\n\u003cdetails\u003e\n\u003csummary\u003eUse the prebuilt dashboards\u003c/summary\u003e\n\u003cbr\u003e\n\n![Prebuilt dashboards](docs/static/prebuilt_dashboards.png)\n\n\u003c/details\u003e\n\n## Run it as a container\n\nCreate a `.env` file containing:\n\n```sh\nSTEAMPIPE_CACHE_MAX_TTL=3600          # DB max TTL\nSTEAMPIPE_CACHE_TTL=3600              # DB TTL\nSTEAMPIPE_DATABASE_PASSWORD=ABCDEFGH  # Password to connect to the Steampipe DB\nQUERY_TIMEOUT_SECONDS=60              # Use -1 to disable it\n\nJIRA_URL=YOUR_JIRA_URL\nJIRA_PERSONAL_ACCESS_TOKEN=YOUR_JIRA_PERSONAL_ACCESS_TOKEN\nJIRA_USER=YOUR_JIRA_USER\n```\n\nYou can just use `make run` or do it manually:\n\nBuild the Steampipe + Jira plugin image:\n```sh\npodman build -f steampipe-jira.Dockerfile -t steampipe-jira .\n```\n\nRun it as a service:\n```sh\nsource .env\npodman run \\\n    -p 9193:9193 \\\n    -d \\\n    -e STEAMPIPE_DATABASE_PASSWORD=\"$STEAMPIPE_DATABASE_PASSWORD\" \\\n    -e JIRA_URL=\"$JIRA_URL\" \\\n    -e JIRA_PERSONAL_ACCESS_TOKEN=\"$JIRA_PERSONAL_ACCESS_TOKEN\" \\\n    -e JIRA_USER=\"$JIRA_USER\" \\\n    --name steampipe-jira \\\n    --rm \\\n    steampipe-jira service start --foreground\n```\n\nYou can see the container logs using:\n```sh\npodman logs --follow steampipe-jira\n```\n\nYou can then use any CLI tool to connect to the PostgreSQL database:\n```sh\npgcli \"postgres://steampipe:$STEAMPIPE_DATABASE_PASSWORD@localhost:9193/steampipe?sslmode=require\"\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjuandspy%2Ffriendlierjira","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjuandspy%2Ffriendlierjira","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjuandspy%2Ffriendlierjira/lists"}