{"id":24756083,"url":"https://github.com/zabit923/pa-dgu","last_synced_at":"2026-04-17T17:32:38.886Z","repository":{"id":260449278,"uuid":"869235809","full_name":"zabit923/PA-DGU","owner":"zabit923","description":"👨‍🎓 Diplom project on FastAPI 👩‍🎓","archived":false,"fork":false,"pushed_at":"2025-10-02T20:40:22.000Z","size":4789,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-02T21:14:10.713Z","etag":null,"topics":["docker","fastapi","python","rest-api","websocket"],"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/zabit923.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":"2024-10-08T00:35:14.000Z","updated_at":"2025-10-02T20:40:26.000Z","dependencies_parsed_at":"2024-12-04T21:32:07.915Z","dependency_job_id":"b790e3fb-92ed-4a8b-897c-27ae8ffdfeac","html_url":"https://github.com/zabit923/PA-DGU","commit_stats":null,"previous_names":["zabit923/pa-dgu"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/zabit923/PA-DGU","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zabit923%2FPA-DGU","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zabit923%2FPA-DGU/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zabit923%2FPA-DGU/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zabit923%2FPA-DGU/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zabit923","download_url":"https://codeload.github.com/zabit923/PA-DGU/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zabit923%2FPA-DGU/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31938742,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-17T17:29:20.459Z","status":"ssl_error","status_checked_at":"2026-04-17T17:28:47.801Z","response_time":62,"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":["docker","fastapi","python","rest-api","websocket"],"created_at":"2025-01-28T13:38:05.640Z","updated_at":"2026-04-17T17:32:38.870Z","avatar_url":"https://github.com/zabit923.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![forthebadge](https://forthebadge.com/images/badges/made-with-python.svg)](https://forthebadge.com) [![forthebadge](https://forthebadge.com/images/badges/powered-by-responsibility.svg)](https://forthebadge.com)\n\n## Quick Start\n\n\n1) git clone https://github.com/zabit923/PA-DGU.git\n2) create .env file in ./src\n\n.env file example:\n```commandline\nPOSTGRES_DB=YOUR_DB\nPOSTGRES_USER=postgres\nPOSTGRES_PASSWORD=YOUR_DB_PASS\nDB_HOST=database\nDB_PORT=5432\n\nDEBUG=False\n\nSECRET_KEY=YOUR_SECRET\nRESET_PASSWORD_TOKEN_SECRET=YOUR_RESET_PASSWORD_TOKEN_SECRET\nVERIFICATION_TOKEN_SECRET=YOUR_VERIFICATION_TOKEN_SECRET\n\nEMAIL_HOST_USER=YOUR_EMAIL_HOST_USER\nEMAIL_HOST_PASSWORD=YOUR_EMAIL_HOST_PASSWORD\n```\n3) docker-compose up -d\n\n## `Project Styling` ✅\n\n| Tools          |                                                                                                                                                                                                                                                                                      Description                                                                                                                                                                                                                                                                                       |\n| -------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: |\n| `isort`        |                                                                                                                                                                                                         isort your python imports for you so you don't have to. isort is a Python utility / library to sort imports alphabetically, and automatically separated into sections.                                                                                                                                                                                                         |\n| `black`        |                       Black is the uncompromising Python code formatter. By using it, you agree to cede control over minutiae of hand-formatting. In return, Black gives you speed, determinism, and freedom from pycodestyle nagging about formatting. You will save time and mental energy for more important matters. Blackened code looks the same regardless of the project you're reading. Formatting becomes transparent after a while and you can focus on the content instead. Black makes code review faster by producing the smallest diffs possible.                       |\n| `pre-commit`   | Git hooks allow you to run scripts any time you want to commit or push. This lets us run all of our linting and tests automatically every time we commit/push. Git hook scripts are useful for identifying simple issues before submission to code review. We run our hooks on every commit to automatically point out issues in code such as missing semicolons, trailing whitespace, and debug statements. By pointing these issues out before code review, this allows a code reviewer to focus on the architecture of a change while not wasting time with trivial style nitpicks. |\n\nFor more information on `Project Styling` check out the detailed guide 👉 [How to set up a perfect Python project](https://sourcery.ai/blog/python-best-practices/)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzabit923%2Fpa-dgu","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzabit923%2Fpa-dgu","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzabit923%2Fpa-dgu/lists"}