{"id":19483529,"url":"https://github.com/librity/ignite_jwt","last_synced_at":"2026-06-16T00:34:44.996Z","repository":{"id":99703956,"uuid":"355359194","full_name":"librity/ignite_jwt","owner":"librity","description":"Rocket Seat - Ignite - Elixir - Challenge 13 - An authenticated API made with Phoenix and Guardian.","archived":false,"fork":false,"pushed_at":"2022-02-25T12:00:26.000Z","size":31,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-11-19T00:03:44.498Z","etag":null,"topics":["challenge","elixir","guardian","phoenix","rocketseat-ignite"],"latest_commit_sha":null,"homepage":"","language":"Elixir","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/librity.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":"2021-04-06T23:48:54.000Z","updated_at":"2022-02-25T12:00:30.000Z","dependencies_parsed_at":null,"dependency_job_id":"93484c7a-ab58-4d85-9439-76a4e4ad1e02","html_url":"https://github.com/librity/ignite_jwt","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":"librity/ignite_repo_tests","purl":"pkg:github/librity/ignite_jwt","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/librity%2Fignite_jwt","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/librity%2Fignite_jwt/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/librity%2Fignite_jwt/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/librity%2Fignite_jwt/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/librity","download_url":"https://codeload.github.com/librity/ignite_jwt/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/librity%2Fignite_jwt/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34386320,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-15T02:00:07.085Z","response_time":63,"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":["challenge","elixir","guardian","phoenix","rocketseat-ignite"],"created_at":"2024-11-10T20:15:26.664Z","updated_at":"2026-06-16T00:34:44.979Z","avatar_url":"https://github.com/librity.png","language":"Elixir","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Rocket Seat Ignite - JWT Authentication\n\n## Table of Contents\n\n- [About](#about)\n- [Endpoints](#endpoints)\n- [Setup](#setup)\n- [Bash Commands](#bash_commands)\n- [Elixir Commands](#elixir_commands)\n- [Libs](#libs)\n- [Docs](#docs)\n- [Resources](#resources)\n\n## About \u003ca name = \"about\"\u003e\u003c/a\u003e\n\nAn authenticated API made with Phoenix and Guardian.\n\n## Endpoints \u003ca name = \"endpoints\"\u003e\u003c/a\u003e\n\nBuilt-in:\n\n- `GET` http://localhost:4000/dashboard\n\n`Users`\n\n- `POST` http://localhost:4000/api/users\n- `POST` http://localhost:4000/api/users/sign_in\n\n`Repos`\n\n- `GET` http://localhost:4000/api/repos/:username\n\n## Setup \u003ca name = \"setup\"\u003e\u003c/a\u003e\n\nInstall `Erlang`, `Elixir` and `Phoenix`.\n\n## Bash Commands \u003ca name = \"bash_commands\"\u003e\u003c/a\u003e\n\n```bash\n# Create phoenix app without webpacker or html views\n$ mix phx.new app_name --no-webpack --no-html\n\n# Intall dependencies\n$ mix deps.get\n\n# Compile project\n$ mix compile\n\n# Generate linter config file\n$ mix credo.gen.config\n\n# Run linter\n$ mix credo --strict\n\n# Start Phoenix dev server on http://localhost:4000\n$ mix phx.server\n\n# Start your project as an Interactive Elixir session\n$ iex -S mix\n\n# List all configured routes\n$ mix phx.routes\n```\n\nTests\n\n```bash\n# Run tests\n$ mix test\n\n# Run tests w/ coverage report\n$ mix test --cover\n```\n\n## Elixir Commands \u003ca name = \"elixir_commands\"\u003e\u003c/a\u003e\n\nGithub client:\n\n```elixir\n\u003e Github.Client.get_user_repos(\"teamon\")\n\u003e Github.Client.get_user_repos(\"danilo-vieira\")\n\u003e Github.Client.get_user_repos(\"librity\")\n```\n\n## Libs \u003ca name = \"libs\"\u003e\u003c/a\u003e\n\n- https://github.com/phoenixframework/phoenix\n- https://github.com/teamon/tesla\n- https://github.com/PSPDFKit-labs/bypass\n- https://github.com/dashbitco/mox\n- https://github.com/thoughtbot/ex_machina\n- https://github.com/riverrun/pbkdf2_elixir\n- https://github.com/ueberauth/guardian\n\n## Docs \u003ca name = \"docs\"\u003e\u003c/a\u003e\n\n- https://elixir-lang.org/crash-course.html\n\n## Resources \u003ca name = \"resources\"\u003e\u003c/a\u003e\n\n- https://www.tutorialspoint.com/elixir/elixir_lists_and_tuples.htm\n- https://stackoverflow.com/questions/29566248/how-to-use-io-inspect-on-a-long-list-without-trimming-it\n- https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/User-Agent\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flibrity%2Fignite_jwt","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flibrity%2Fignite_jwt","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flibrity%2Fignite_jwt/lists"}