{"id":28910366,"url":"https://github.com/shikharcodess/goauth","last_synced_at":"2026-02-03T19:01:00.659Z","repository":{"id":254967086,"uuid":"848112968","full_name":"shikharcodess/goauth","owner":"shikharcodess","description":"Authorization+Authentication service in Golang","archived":false,"fork":false,"pushed_at":"2024-08-27T06:55:48.000Z","size":222,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-05T09:38:49.698Z","etag":null,"topics":["authentication","authorization","jwt-authentication","mongodb"],"latest_commit_sha":null,"homepage":"","language":"Go","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/shikharcodess.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":"2024-08-27T06:43:16.000Z","updated_at":"2024-08-27T07:08:42.000Z","dependencies_parsed_at":"2024-08-27T08:16:58.234Z","dependency_job_id":null,"html_url":"https://github.com/shikharcodess/goauth","commit_stats":null,"previous_names":["shikhary10/goauth","shikharcodess/goauth"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/shikharcodess/goauth","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shikharcodess%2Fgoauth","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shikharcodess%2Fgoauth/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shikharcodess%2Fgoauth/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shikharcodess%2Fgoauth/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/shikharcodess","download_url":"https://codeload.github.com/shikharcodess/goauth/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shikharcodess%2Fgoauth/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29054040,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-03T15:43:47.601Z","status":"ssl_error","status_checked_at":"2026-02-03T15:43:46.709Z","response_time":96,"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":["authentication","authorization","jwt-authentication","mongodb"],"created_at":"2025-06-21T18:05:37.257Z","updated_at":"2026-02-03T19:01:00.653Z","avatar_url":"https://github.com/shikharcodess.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n  \u003cimg src=\"/media/goauth.png\" alt=\"GoAuth Logo\" width=\"320\" height=\"300\"\u003e\n  \u003ch1\u003eGoAuth\u003c/h1\u003e\n  \u003cstrong\u003eAuthorization+Authentication service in Golang\u003c/strong\u003e\n  \u003ch6\u003eA backend API service in Golang that handles authorization and authentication for a web app\u003c/h6\u003e\n\u003c/div\u003e\n\u003cbr\u003e\n\n## File Structure\n\n```\n📦backend\n ┣ 📂api\n ┃ ┣ 📜README.md\n ┃ ┣ 📜docs.go\n ┃ ┣ 📜swagger.json\n ┃ ┗ 📜swagger.yaml\n ┣ 📂cmd\n ┃ ┣ 📂configs\n ┃ ┃ ┣ 📜cache.go\n ┃ ┃ ┣ 📜db.go\n ┃ ┃ ┗ 📜env.go\n ┃ ┣ 📂controllers\n ┃ ┃ ┗ 📂controller_v1\n ┃ ┃ ┃ ┣ 📜admin.go\n ┃ ┃ ┃ ┗ 📜user.go\n ┃ ┣ 📂handlers\n ┃ ┃ ┣ 📜cache.go\n ┃ ┃ ┣ 📜database.go\n ┃ ┃ ┗ 📜handler.go\n ┃ ┣ 📂middleware\n ┃ ┃ ┣ 📜jwt.go\n ┃ ┃ ┗ 📜role.go\n ┃ ┣ 📂models\n ┃ ┃ ┗ 📜models.go\n ┃ ┣ 📂routes\n ┃ ┃ ┗ 📂routes_v1\n ┃ ┃ ┃ ┣ 📜admin.go\n ┃ ┃ ┃ ┗ 📜user.go\n ┃ ┣ 📂utils\n ┃ ┃ ┣ 📜examiners.go\n ┃ ┃ ┗ 📜helpers.go\n ┃ ┗ 📜main.go\n ┣ 📂deployments\n ┃ ┣ 📜Dockerfile\n ┃ ┣ 📜README.md\n ┃ ┗ 📜db-docker-compose.yaml\n ┣ 📂docs\n ┃ ┗ 📜README.md\n ┣ 📂test\n ┃ ┣ 📜admin_unit_test.md\n ┃ ┗ 📜user_unit_test.md\n ┣ 📜.editorconfig\n ┣ 📜.env\n ┣ 📜.gitignore\n ┣ 📜README.md\n ┣ 📜go.mod\n ┗ 📜go.sum\n```\n\n# Documentation\n\nFor Documentation, [Click Here](https://github.com/ShikharY10/goauth/tree/main/docs)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshikharcodess%2Fgoauth","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fshikharcodess%2Fgoauth","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshikharcodess%2Fgoauth/lists"}