{"id":19167875,"url":"https://github.com/tullo/fusionauth","last_synced_at":"2026-04-29T07:34:51.134Z","repository":{"id":69024178,"uuid":"451531614","full_name":"tullo/fusionauth","owner":"tullo","description":"User authn \u0026 authz using FusionAuth for secure access management.","archived":false,"fork":false,"pushed_at":"2026-04-03T17:31:33.000Z","size":361,"stargazers_count":1,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-04-03T20:22:54.864Z","etag":null,"topics":["authentication","authorization","docker-compose","fusionauth","kubernetes-deployment"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"unlicense","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/tullo.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2022-01-24T15:59:07.000Z","updated_at":"2026-04-03T17:31:26.000Z","dependencies_parsed_at":"2023-10-10T16:53:18.470Z","dependency_job_id":"d6c562dc-0b78-4c77-8b2b-530310e07e58","html_url":"https://github.com/tullo/fusionauth","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/tullo/fusionauth","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tullo%2Ffusionauth","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tullo%2Ffusionauth/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tullo%2Ffusionauth/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tullo%2Ffusionauth/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tullo","download_url":"https://codeload.github.com/tullo/fusionauth/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tullo%2Ffusionauth/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32416146,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-29T06:29:02.080Z","status":"ssl_error","status_checked_at":"2026-04-29T06:29:00.631Z","response_time":110,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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":["authentication","authorization","docker-compose","fusionauth","kubernetes-deployment"],"created_at":"2024-11-09T09:39:45.453Z","updated_at":"2026-04-29T07:34:51.117Z","avatar_url":"https://github.com/tullo.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# fusionauth\n\nUser authn \u0026 authz using [FusionAuth](https://fusionauth.io/) for secure access management.\n\n## Development\n\nFor a quick local setup.\n\n### docker-compose\n\n1. `cd docker \u0026\u0026 docker-compose pull`\n1. `docker-compose up -d`\n1. Open [localhost:9011/](http://localhost:9011/)\n1. Setup admin user.\n1. Create a fusionauth application.\n1. Edit the user and add a `registration` for the app just created.\n\n### OAuth configuration\n\n1. Open http://localhost:9011/admin/application/\n1. View the details of the created fusionauth application.\n1. Take note of `Client Id:` and `Client secret:`\n1. `cp .env.template .env`\n1. Replace the values in `.env` with the values from the application.\n\n### Authenticate\n\n1. `npm i \u0026\u0026 npm start`\n1. Open [127.0.0.1.nip.io:3000/](https://127.0.0.1.nip.io:3000/)\n\n---\n\n## Production / Kubernetes Cluster\n\nDeploy service dependencies.\n\n### Database\n\n\nDeploy `bitnami/postgresql` helm chart with [cloud.okteto.com](https://cloud.okteto.com) catalog deployment using [db-values.yaml](db-values.yaml) template values.\n\n### Elasticsearch\n\nDeploy `elastic/elasticsearch` helm chart using [es-values.yaml](es-values.yaml) template values.\n\n```sh\nhelm install elasticsearch elastic/elasticsearch \\\n  --version 7.16.3 \\\n  --values es-values.yaml\n\nkubectl get pods --namespace=... -l app=elasticsearch-master -w\n# NAME                     READY   STATUS    RESTARTS   AGE\n# elasticsearch-master-0   1/1     Running   0          20m\n```\n\n### FusionAuth\n\n1. Deploy `fusionauth/fusionauth` helm chart using [fa-values.yaml](fa-values.yaml) template values.\n\n    ```sh\n    helm install fusionauth-1.32.1 fusionauth/fusionauth \\\n    --version '0.10.5' \\\n    --values fa-values.yaml\n\n    kubectl get pods -l app.kubernetes.io/name=fusionauth -w\n    # NAME                          READY   STATUS    RESTARTS   AGE\n    # fusionauth-6b7775c49b-rj98p   1/1     Running   0          13m\n    ```\n1. Setup admin user.\n1. Create a fusionauth application.\n1. Edit the user and add a `registration` for the app just created.\n2. Update `.env` with values from the fusionauth application.\n\n### Authenticate\n\n1. `npm start`\n1. Open [127.0.0.1.nip.io:3000/](https://127.0.0.1.nip.io:3000/)\n\n---\n\n## Helm Charts\n\n- [Elasticsearch Helm Chart](https://github.com/elastic/helm-charts/tree/v7.16.3/elasticsearch) v7.16.3\n- [FusionAuth Helm Chart](https://github.com/FusionAuth/charts/tree/0.10.5) v0.10.5\n\n\n```sh\nhelm list\n# NAME             \tSTATUS  \tCHART               \tAPP VERSION\n# elasticsearch    \tdeployed\telasticsearch-7.16.3\t7.16.3     \n# fusionauth-1.32.1\tdeployed\tfusionauth-0.10.5   \t1.30.1     \n# postgresql       \tdeployed\tpostgresql-6.3.12   \t11.5.0     \n```\n\n---\n\n## TODO\n\n- [Set up minimal security for Elasticsearch](https://www.elastic.co/guide/en/elasticsearch/reference/7.16/security-minimal-setup.html)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftullo%2Ffusionauth","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftullo%2Ffusionauth","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftullo%2Ffusionauth/lists"}