{"id":23218904,"url":"https://github.com/jihongkim98/drf-api-practice","last_synced_at":"2026-04-13T09:32:11.078Z","repository":{"id":211252886,"uuid":"728288204","full_name":"JiHongKim98/drf-api-practice","owner":"JiHongKim98","description":"Exercises on building a REST API using Django Rest Framework and other technologies.","archived":false,"fork":false,"pushed_at":"2024-01-01T16:04:38.000Z","size":101,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-12T16:36:37.917Z","etag":null,"topics":["celery","celery-beat","crud-api","decouple","django","django-rest-framework","djangorestframework-simplejwt","docker","drf-spectacular","rabbitmq","simple-jwt","swagger"],"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/JiHongKim98.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":"2023-12-06T16:14:19.000Z","updated_at":"2024-10-22T14:42:42.000Z","dependencies_parsed_at":"2025-02-11T11:42:52.917Z","dependency_job_id":null,"html_url":"https://github.com/JiHongKim98/drf-api-practice","commit_stats":null,"previous_names":["jihongkim98/drf-api-study"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/JiHongKim98/drf-api-practice","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JiHongKim98%2Fdrf-api-practice","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JiHongKim98%2Fdrf-api-practice/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JiHongKim98%2Fdrf-api-practice/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JiHongKim98%2Fdrf-api-practice/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/JiHongKim98","download_url":"https://codeload.github.com/JiHongKim98/drf-api-practice/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JiHongKim98%2Fdrf-api-practice/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31746294,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-13T09:16:15.125Z","status":"ssl_error","status_checked_at":"2026-04-13T09:16:05.023Z","response_time":93,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":["celery","celery-beat","crud-api","decouple","django","django-rest-framework","djangorestframework-simplejwt","docker","drf-spectacular","rabbitmq","simple-jwt","swagger"],"created_at":"2024-12-18T21:18:23.399Z","updated_at":"2026-04-13T09:32:11.060Z","avatar_url":"https://github.com/JiHongKim98.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# DRF API Practice\n\nExercises on building a REST API using Django Rest Framework and other technologies.\n\n## Technologies Used\n- Django REST Framework\n- Simple-JWT\n- Celery \u0026 Celery Beat\n- RabbitMQ\n- DRF-Spectacular\n\n## Basic Features\n- API Documentation using [DRF-Spectacular](https://github.com/tfranzel/drf-spectacular)\n- Email verification on user registration\n- Scheduled tasks at regular intervals\n- Custom JWT authentication for HttpOnly attribute\n- CRUD operations for Posts, Comments, and Users\n- Dockerization for local development\n\n## ER-Diagram\n\u003e Implemented a simple structure using SQLite3 to practice integrating API CRUD operations and other technologies.\n\nEntity-Relationship Diagram generated using [dbdiagram.io](https://dbdiagram.io/)\n\n![drf-api-practice](https://github.com/JiHongKim98/drf-api-practice/assets/144337839/39c978ce-4458-48ec-adaf-55fdbbfa0399)\n\n## Getting Started\n\nClone this repository to your local machine, rename the `.env.example` file to `.env`, and update the environment variables accordingly.\u003cbr/\u003e\nThen, run the following command:\n\n```bash\n$ docker-compose up\n```\n\nAnd you can navigate to [`http://localhost:8000/docs/swagger/`](http://localhost:8000/docs/swagger/) or [`http://localhost:8000/docs/redoc/`](http://localhost:8000/docs/redoc/) to view the the API documentation.\n\n\u003cbr/\u003e\n\nIf you want start test or create super user:\n\n```bash\n# start test\n$ docker-compose exec web python3 manage.py test\n\n# create super user\n$ docker-compose exec web python3 manage.py createsuperuser\n```\n\n\u003cbr/\u003e\n\nIf you encounter the `exec /code/entrypoint.sh: no such file or directory` error while running `docker-compose up` on Windows.\u003cbr/\u003e\nExecute the following command to disable automatic conversion from LF to CRLF:\n\n```bash\n$ git config --global core.autocrlf false\n```\n\nAfter running this command, clone the repository again to ensure proper configuration.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjihongkim98%2Fdrf-api-practice","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjihongkim98%2Fdrf-api-practice","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjihongkim98%2Fdrf-api-practice/lists"}