{"id":37427173,"url":"https://github.com/michaeljwright/agile-lead-platform","last_synced_at":"2026-01-16T06:21:38.882Z","repository":{"id":237267588,"uuid":"794167185","full_name":"michaeljwright/agile-lead-platform","owner":"michaeljwright","description":"An Agile Platform for Product Engineering. Create your team, set sprint goals, track waste and play planning poker to help estimate your stories","archived":false,"fork":false,"pushed_at":"2024-08-01T13:01:28.000Z","size":1810,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-08-01T20:33:35.591Z","etag":null,"topics":["agile","agile-development","agile-methodologies","firebase","firebase-auth","firestore","free","mit-license","nextjs","open-source","planning-poker","radix-ui","react","scrum-poker","self-hosted","sprint-goals","sprint-planner","sprint-planning","stand-up","waste-snake"],"latest_commit_sha":null,"homepage":"https://agilelead.co.uk/","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/michaeljwright.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"2024-04-30T15:26:23.000Z","updated_at":"2024-08-01T13:01:29.000Z","dependencies_parsed_at":"2024-04-30T16:40:17.018Z","dependency_job_id":"5cf8c54f-af62-4e25-ba10-1b7e2d155198","html_url":"https://github.com/michaeljwright/agile-lead-platform","commit_stats":null,"previous_names":["michaeljwright/agile-lead-platform"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/michaeljwright/agile-lead-platform","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/michaeljwright%2Fagile-lead-platform","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/michaeljwright%2Fagile-lead-platform/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/michaeljwright%2Fagile-lead-platform/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/michaeljwright%2Fagile-lead-platform/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/michaeljwright","download_url":"https://codeload.github.com/michaeljwright/agile-lead-platform/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/michaeljwright%2Fagile-lead-platform/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28477647,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-16T03:13:13.607Z","status":"ssl_error","status_checked_at":"2026-01-16T03:11:47.863Z","response_time":107,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["agile","agile-development","agile-methodologies","firebase","firebase-auth","firestore","free","mit-license","nextjs","open-source","planning-poker","radix-ui","react","scrum-poker","self-hosted","sprint-goals","sprint-planner","sprint-planning","stand-up","waste-snake"],"created_at":"2026-01-16T06:21:38.780Z","updated_at":"2026-01-16T06:21:38.864Z","avatar_url":"https://github.com/michaeljwright.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"## Requirements\n\n- [Node.js 18v \u003e=](https://nodejs.org/en/) _always use NVM locally_\n- Firebase (Auth, Firestore, Analytics)\n\n## Clone the repo\n\n```bash\n$ git clone https://github.com/michaeljwright/agile-lead-platform.git\n\n$ cd agile-lead-platform\n```\n\n## Setup\n\n1. Copy `.env-example` and rename to `.env-local`\n2. Go to https://firebase.google.com and create a project for a webapp. Then add the details to the `.env-local` file.\n3. Create a Firebase firestore db and set rules to those within `firestore-rules.txt`\n4. Remember to change the `SITE_URL` in `.env-local` if you are using a different server or port.\n5. If you're deploying to a live environment, its worth setting `ANONYMOUS_SIGNIN_ENABLED` in your env to blank (not false).\n\n## Install \u0026 Run\n\n```bash\n$ npm install\n# or\n$ yarn\n\n# Run in Development\n$ npm run dev\n# or\n$ yarn dev\n\n# Run in Production\n$ npm run build\n$ npm run start\n#or\n$ yarn build\n$ yarn start\n```\n\n## Setup \u0026 Run Tests\n\nA lot of work needs doing on the test coverage. We are working on it!\n\n### Jest Unit Tests\n\nTo run the unit tests, simply run `npm test`\n\n### Cypress E2E Tests\n\nTo run the E2E tests, you need to jump through a few hoops due to Firebase auth etc.\n\n1. Generate and download a service account as described in https://firebase.google.com/docs/admin/setup#initialize_the_sdk_in_non-google_environments\n2. Create the file `./serviceAccount.json` in your project root and add the contents of the downloaded json file from above.\n3. Create the file `./cypress.env.json` in your project root and add the following below.\n\n```json\n{\n\t\"TEST_UID\": \"\u003cYOUR API KEY\u003e\",\n\t\"FIREBASE_PROJECT_ID\": \"\u003cYOUR API KEY\u003e\",\n\t\"FIREBASE_API_KEY\": \"\u003cYOUR API KEY\u003e\"\n}\n```\n\n4. Run the tests with cypress using `npx cypress open` and then selecting the specific tests you want to run.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmichaeljwright%2Fagile-lead-platform","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmichaeljwright%2Fagile-lead-platform","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmichaeljwright%2Fagile-lead-platform/lists"}