{"id":20556425,"url":"https://github.com/flagsmith/flagsmith-jira-integration","last_synced_at":"2025-10-19T23:38:23.061Z","repository":{"id":209429434,"uuid":"716523185","full_name":"Flagsmith/flagsmith-jira-integration","owner":"Flagsmith","description":"Jira integration for Flagsmith","archived":false,"fork":false,"pushed_at":"2025-09-10T09:00:46.000Z","size":692,"stargazers_count":1,"open_issues_count":9,"forks_count":1,"subscribers_count":7,"default_branch":"main","last_synced_at":"2025-09-10T12:50:36.313Z","etag":null,"topics":["feature-flags","jira"],"latest_commit_sha":null,"homepage":"https://docs.flagsmith.com/integrations/project-management/jira","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Flagsmith.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":"CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2023-11-09T10:11:17.000Z","updated_at":"2025-09-10T09:00:50.000Z","dependencies_parsed_at":"2023-11-27T10:32:50.617Z","dependency_job_id":"77a18962-d2ed-4c02-b3bc-83a06def6ad3","html_url":"https://github.com/Flagsmith/flagsmith-jira-integration","commit_stats":null,"previous_names":["flagsmith/flagsmith-jira-integration"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/Flagsmith/flagsmith-jira-integration","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Flagsmith%2Fflagsmith-jira-integration","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Flagsmith%2Fflagsmith-jira-integration/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Flagsmith%2Fflagsmith-jira-integration/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Flagsmith%2Fflagsmith-jira-integration/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Flagsmith","download_url":"https://codeload.github.com/Flagsmith/flagsmith-jira-integration/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Flagsmith%2Fflagsmith-jira-integration/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278931653,"owners_count":26070789,"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","status":"online","status_checked_at":"2025-10-08T02:00:06.501Z","response_time":56,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["feature-flags","jira"],"created_at":"2024-11-16T03:27:39.632Z","updated_at":"2025-10-08T10:57:58.930Z","avatar_url":"https://github.com/Flagsmith.png","language":"TypeScript","readme":"# Flagsmith Jira Integration\n\nThis repository contains an outer folder to install and configure the Forge CLI with an inner folder containing the Jira\napp itself.\n\nSee [developer.atlassian.com/platform/forge](https://developer.atlassian.com/platform/forge) for documentation and\ntutorials explaining Forge.\n\n## Architectural decisions\n\nSee [docs/decisions/README.md](docs/decisions/README.md) for decision records.\n\n## Forge CLI installation\n\nThe following steps reflect the usual [Getting started](https://developer.atlassian.com/platform/forge/getting-started/)\ninstructions but diverge for reproducability and portability reasons.\n\n### Before you begin\n\nForge CLI requires [Docker](https://docs.docker.com/get-docker/) and Node.js 22 (LTS) to be installed:\n\n- [Apple macOS](https://developer.atlassian.com/platform/forge/installing-forge-on-macos)\n- [Linux](https://developer.atlassian.com/platform/forge/installing-forge-on-linux)\n\nForge recommend installing Node using using [nvm](https://github.com/nvm-sh/nvm#installing-and-updating) but\n[asdf](https://asdf-vm.com/) also works. Ensure you are using the correct Node.js version before executing any other\ncommands:\n\n    nvm use\n\n### Install the Forge CLI\n\nForge instructions start by\n[installing the CLI globally](https://developer.atlassian.com/platform/forge/getting-started/#install-the-forge-cli)\nbut you can install it locally if you prefer:\n\n    # install the CLI globally...\n    npm i @forge/cli@11 -g\n    # then install local dependencies\n    npm ci --include=dev\n    # ...or install the CLI locally\n    npm i @forge/cli@11 --no-save\n\nThe Forge CLI is then available by typing `npx forge`.\n\n### Log in with an Atlassian API token\n\nCreate an Atlassian API token to log in to the CLI. The CLI uses your token when running commands.\n\n1. Go to \u003chttps://id.atlassian.com/manage/api-tokens\u003e.\n1. Click Create API token.\n1. Enter a label to describe your API token. For example, forge-api-token.\n1. Click Create.\n1. Click Copy to clipboard and close the dialog.\n\nThe `forge login` command attempts to store credentials in your operating system keychain and may not work on all\nplatforms. Instead, we can skip this command and set environment variables instead.\n\n### Using environment variables to login\n\nCopy `.env-example` to `.env` and complete your Atlassian account email address and API token.\n\nIf you use [direnv](https://direnv.net/) these values should be picked up automatically. Alternatively use the activate\nscript:\n\n    source \u003c(./bin/activate)\n\nThis reads `.env` values into your shell environment and also sets an alias so you can execute Forge CLI commands by\ntyping `forge` without needing an `npx` prefix or to or mess with your path variable.\n\nCheck installation and authentication by typing e.g.:\n\n    forge whoami\n\n## Flagsmith Jira app deployment\n\nFirst change into the app folder:\n\n    cd flagsmith-jira-app\n\nSee [flagsmith-jira-app/README.md](flagsmith-jira-app/README.md).\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fflagsmith%2Fflagsmith-jira-integration","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fflagsmith%2Fflagsmith-jira-integration","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fflagsmith%2Fflagsmith-jira-integration/lists"}