{"id":19483518,"url":"https://github.com/librity/ignite_queue","last_synced_at":"2026-05-28T16:31:29.516Z","repository":{"id":99704033,"uuid":"355714961","full_name":"librity/ignite_queue","owner":"librity","description":"Rocket Seat - Ignite - Elixir - Challenge 15 - Am implementation of queues using GenServers.","archived":false,"fork":false,"pushed_at":"2022-02-25T12:00:45.000Z","size":6,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-02-25T17:46:13.082Z","etag":null,"topics":["challenge","elixir","genserver","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-08T00:09:37.000Z","updated_at":"2024-05-20T14:49:05.000Z","dependencies_parsed_at":null,"dependency_job_id":"a25d166f-e47c-445b-a8bb-e7fd2c95cac7","html_url":"https://github.com/librity/ignite_queue","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/librity/ignite_queue","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/librity%2Fignite_queue","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/librity%2Fignite_queue/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/librity%2Fignite_queue/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/librity%2Fignite_queue/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/librity","download_url":"https://codeload.github.com/librity/ignite_queue/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/librity%2Fignite_queue/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33617718,"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-05-28T02:00:06.440Z","response_time":99,"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","genserver","rocketseat-ignite"],"created_at":"2024-11-10T20:15:24.817Z","updated_at":"2026-05-28T16:31:29.496Z","avatar_url":"https://github.com/librity.png","language":"Elixir","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Rocket Seat Ignite - Queue Server\n\n## Table of Contents\n\n- [About](#about)\n- [Bash Commands](#bash_commands)\n- [Elixir Commands](#elixir_commands)\n- [Libs](#libs)\n- [Docs](#docs)\n\n## About \u003ca name = \"about\"\u003e\u003c/a\u003e\n\nAm implementation of queues using GenServers.\n\n## Bash Commands \u003ca name = \"bash_commands\"\u003e\u003c/a\u003e\n\n```bash\n# Create new Elixir project\n$ mix new project_name\n# Intall dependencies\n$ mix deps.get\n# Generate linter config\n$ mix credo gen.config\n# Run linter\n$ mix credo --strict\n# Start your project as an Interactive Elixir session\n$ iex -S mix\n# Run tests\n$ mix test\n```\n\n## Elixir Commands \u003ca name = \"elixir_commands\"\u003e\u003c/a\u003e\n\n```elixir\n\u003e {:ok, pid} = Queue.initialize_queue([1, 2, 3])\n\u003e Queue.enqueue(pid, 5)\n:ok\n\u003e Queue.dequeue(pid)\n1\n\u003e Queue.dequeue(pid)\n2\n\u003e Queue.dequeue(pid)\n3\n\u003e Queue.dequeue(pid)\n5\n\u003e Queue.dequeue(pid)\nnil\n```\n\n## Libs \u003ca name = \"libs\"\u003e\u003c/a\u003e\n\n- https://github.com/rrrene/credo\n\n## Docs \u003ca name = \"docs\"\u003e\u003c/a\u003e\n\n- https://elixir-lang.org/crash-course.html\n- https://hexdocs.pm/elixir/master/GenServer.html\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flibrity%2Fignite_queue","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flibrity%2Fignite_queue","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flibrity%2Fignite_queue/lists"}