{"id":34979314,"url":"https://github.com/gethgr/django-base-accounts","last_synced_at":"2026-02-25T22:11:42.932Z","repository":{"id":330627803,"uuid":"1123398454","full_name":"gethgr/django-base-accounts","owner":"gethgr","description":"A reusable Django app providing an abstract email-based user model.","archived":false,"fork":false,"pushed_at":"2025-12-27T13:24:01.000Z","size":6,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-12-28T10:33:44.734Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/gethgr.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":"2025-12-26T19:39:36.000Z","updated_at":"2025-12-27T13:24:05.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/gethgr/django-base-accounts","commit_stats":null,"previous_names":["gethgr/django-base-accounts"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/gethgr/django-base-accounts","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gethgr%2Fdjango-base-accounts","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gethgr%2Fdjango-base-accounts/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gethgr%2Fdjango-base-accounts/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gethgr%2Fdjango-base-accounts/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gethgr","download_url":"https://codeload.github.com/gethgr/django-base-accounts/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gethgr%2Fdjango-base-accounts/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29843254,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-25T21:18:31.832Z","status":"ssl_error","status_checked_at":"2026-02-25T21:18:29.265Z","response_time":61,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5: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":[],"created_at":"2025-12-27T00:53:22.936Z","updated_at":"2026-02-25T22:11:42.927Z","avatar_url":"https://github.com/gethgr.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# django-base-accounts\n\nA reusable Django app providing an **abstract, email-based user model**.  \nDesigned to be extended in any Django project.\n\n## Features\n\n- Abstract `BaseUser` model (email as username)\n- `BaseUserManager` for creating users and superusers\n- Fully reusable and extendable in any project\n- Ready for installation via `poetry` from GitHub\n\n## Installation\n\n```bash\npoetry add git+https://github.com:gethgr/django-base-accounts.git\n```\n\n## After Installation\n\nAdd your app to INSTALLED_APPS in settings.py:\n```bash\nINSTALLED_APPS = [\n    ...\n    \"base_accounts\",\n]\n```\n\n2. Create your custom user model inheriting from BaseUser:\n```bash\nfrom django.db import models\nfrom base_accounts.models import BaseUser\nfrom base_accounts.managers import BaseUserManager\n\nclass CustomUser(BaseUser):\n    first_name = models.CharField(max_length=30)\n    last_name = models.CharField(max_length=30)\n\n    objects = BaseUserManager()\n```\n\n3. Set your custom user in settings.py:\n```bash\nAUTH_USER_MODEL = \"yourapp.CustomUser\"\n```\n\n\n\n\n   \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgethgr%2Fdjango-base-accounts","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgethgr%2Fdjango-base-accounts","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgethgr%2Fdjango-base-accounts/lists"}