{"id":34599522,"url":"https://github.com/anmamuncoder/django-authentication-system","last_synced_at":"2026-01-20T17:46:17.293Z","repository":{"id":322040832,"uuid":"1088019846","full_name":"anmamuncoder/django-authentication-system","owner":"anmamuncoder","description":"Enterprise-grade REST API @ GraphQL API with comprehensive authentication system, real-time inventory management, and subscription-based access control. Features include user registration with OTP verification, password reset workflows, profile management, WebSocket-powered live updates, inventory sharing between users, subscription tiers, and inte","archived":false,"fork":false,"pushed_at":"2025-11-29T15:48:23.000Z","size":125,"stargazers_count":0,"open_issues_count":0,"forks_count":2,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-11-30T04:44:01.174Z","etag":null,"topics":["celery","chache","django","django-redis","django-rest-framework","docker","email-verification","graphql-api","postgresql","redis","rest-api","throttle"],"latest_commit_sha":null,"homepage":"","language":"Python","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/anmamuncoder.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-11-02T06:02:19.000Z","updated_at":"2025-11-25T15:39:14.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/anmamuncoder/django-authentication-system","commit_stats":null,"previous_names":["anmamun0/django-authentication-system","anmamuncoder/django-authentication-system"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/anmamuncoder/django-authentication-system","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anmamuncoder%2Fdjango-authentication-system","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anmamuncoder%2Fdjango-authentication-system/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anmamuncoder%2Fdjango-authentication-system/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anmamuncoder%2Fdjango-authentication-system/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/anmamuncoder","download_url":"https://codeload.github.com/anmamuncoder/django-authentication-system/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anmamuncoder%2Fdjango-authentication-system/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28002250,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-12-24T02:00:07.193Z","response_time":83,"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":["celery","chache","django","django-redis","django-rest-framework","docker","email-verification","graphql-api","postgresql","redis","rest-api","throttle"],"created_at":"2025-12-24T12:08:48.279Z","updated_at":"2025-12-24T12:08:53.037Z","avatar_url":"https://github.com/anmamuncoder.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# django-authentication-system\n\nA Django-based authentication service with a Dockerized dev setup (PostgreSQL + Redis + Celery). Use the commands below to build, run, and manage your local environment quickly.\n\n## Prerequisites\n- Docker and Docker Compose installed\n- A `.env` file in the project root (see Environment variables below)\n\n## Quick start\n1) Build images\n```sh\nsudo docker compose -f docker-compose-dev.yml build\n```\nBuilds all service images defined in compose (web, db, redis, worker).\n\n2) Apply database migrations\n```sh\nsudo docker compose -f docker-compose-dev.yml run --rm web python manage.py migrate\n```\nCreates/updates database schema in the Postgres container.\n\n3) Start the stack\n```sh\nsudo docker compose -f docker-compose-dev.yml up\n```\nStarts web, db, redis, and the Celery worker (logs stream in the foreground).\n\n4) Create an admin user (optional)\n```sh\nsudo docker compose -f docker-compose-dev.yml run --rm web python manage.py createsuperuser\n```\nInteractive prompt to create a Django superuser for admin login.\n\n## Docker commands (with brief explanations)\n### Build\n```sh\nsudo docker compose -f docker-compose-dev.yml build\n```\nBuild or rebuild images after changing dependencies or Dockerfile.\n\n### Make migrations\n```sh\nsudo docker compose -f docker-compose-dev.yml run --rm web python manage.py makemigrations\n```\nGenerates new migration files from your model changes.\n\n### Migrate\n```sh\nsudo docker compose -f docker-compose-dev.yml run --rm web python manage.py migrate\n```\nApplies pending migrations to the database.\n\n### Run project\n```sh\nsudo docker compose -f docker-compose-dev.yml up\n```\nBrings up all services (web, db, redis, worker). Add -d to run in the background.\n\n### Install packages\n```sh\nsudo docker compose -f docker-compose-dev.yml run --rm web pip install package_name\n```\nInstalls a Python package inside the web container. Remember to pin it in `requirements.txt` and rebuild.\n\n### Other commands\n```sh\nsudo docker compose -f docker-compose-dev.yml run --rm web \u003cyour_command_here\u003e\n```\nRun any ad‑hoc manage.py or shell command in the web container.\n\n## Common tasks\n- Create superuser\n\t```sh\n\tsudo docker compose -f docker-compose-dev.yml run --rm web python manage.py createsuperuser\n\t```\n\n- Run tests (pytest)\n\t```sh\n\tsudo docker compose -f docker-compose-dev.yml run --rm web pytest -q\n\t```\n\n- Django shell\n\t```sh\n\tsudo docker compose -f docker-compose-dev.yml run --rm web python manage.py shell\n\t```\n\n- Collect static files (if needed)\n\t```sh\n\tsudo docker compose -f docker-compose-dev.yml run --rm web python manage.py collectstatic --noinput\n\t```\n\n- Stop services\n\t```sh\n\tsudo docker compose -f docker-compose-dev.yml down\n\t```\n\n- Stop and remove volumes (DB reset)\n\t```sh\n\tsudo docker compose -f docker-compose-dev.yml down -v\n\t```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fanmamuncoder%2Fdjango-authentication-system","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fanmamuncoder%2Fdjango-authentication-system","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fanmamuncoder%2Fdjango-authentication-system/lists"}