{"id":19483514,"url":"https://github.com/librity/ignite_repo","last_synced_at":"2026-06-16T15:31:36.311Z","repository":{"id":99704040,"uuid":"353436121","full_name":"librity/ignite_repo","owner":"librity","description":"Rocket Seat - Ignite - Elixir - Challenge 11 - A repo fetcher backend made with Phoenix and Tesla.","archived":false,"fork":false,"pushed_at":"2022-02-25T11:59:45.000Z","size":31,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-02-25T17:46:13.089Z","etag":null,"topics":["challenge","elixir","github-api","phoenix","rocketseat-ignite","tesla-api"],"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-03-31T17:22:47.000Z","updated_at":"2021-04-01T17:01:57.000Z","dependencies_parsed_at":"2023-07-31T13:16:03.442Z","dependency_job_id":null,"html_url":"https://github.com/librity/ignite_repo","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/librity/ignite_repo","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/librity%2Fignite_repo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/librity%2Fignite_repo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/librity%2Fignite_repo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/librity%2Fignite_repo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/librity","download_url":"https://codeload.github.com/librity/ignite_repo/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/librity%2Fignite_repo/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34412785,"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-16T02:00:06.860Z","response_time":126,"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","github-api","phoenix","rocketseat-ignite","tesla-api"],"created_at":"2024-11-10T20:15:23.700Z","updated_at":"2026-06-16T15:31:36.284Z","avatar_url":"https://github.com/librity.png","language":"Elixir","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Rocket Seat Ignite - Repo\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\nA repo fetcher backend made with Phoenix and Tesla.\n\n## Endpoints \u003ca name = \"endpoints\"\u003e\u003c/a\u003e\n\nBuilt-in:\n\n- `GET` http://localhost:4000/dashboard\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\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_repo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flibrity%2Fignite_repo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flibrity%2Fignite_repo/lists"}