{"id":40285364,"url":"https://github.com/8thgencore/yuno-backend","last_synced_at":"2026-01-20T04:30:57.371Z","repository":{"id":68113203,"uuid":"574637218","full_name":"8thgencore/yuno-backend","owner":"8thgencore","description":"API for simple task manager","archived":false,"fork":false,"pushed_at":"2025-02-03T20:06:13.000Z","size":1408,"stargazers_count":0,"open_issues_count":3,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-02-03T21:22:21.754Z","etag":null,"topics":["docker","docker-compose","fastapi","python","redis","sqlmodel"],"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/8thgencore.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":"2022-12-05T18:43:38.000Z","updated_at":"2024-10-30T12:45:38.000Z","dependencies_parsed_at":"2023-10-05T02:26:39.436Z","dependency_job_id":"fc0fa0da-0424-402f-948d-8717b436607b","html_url":"https://github.com/8thgencore/yuno-backend","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/8thgencore/yuno-backend","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/8thgencore%2Fyuno-backend","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/8thgencore%2Fyuno-backend/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/8thgencore%2Fyuno-backend/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/8thgencore%2Fyuno-backend/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/8thgencore","download_url":"https://codeload.github.com/8thgencore/yuno-backend/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/8thgencore%2Fyuno-backend/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28596079,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-20T02:08:49.799Z","status":"ssl_error","status_checked_at":"2026-01-20T02:08:44.148Z","response_time":117,"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":["docker","docker-compose","fastapi","python","redis","sqlmodel"],"created_at":"2026-01-20T04:30:57.305Z","updated_at":"2026-01-20T04:30:57.360Z","avatar_url":"https://github.com/8thgencore.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Yuno API\n\n## Install\n\n### Production\n\n1. Copy file **.env.prod.example** to **.env** and fill in\n\nCreate network\n\n```sh\ndocker network create external_network\n```\n\n_Using docker compose command_\n\n```sh\ndocker compose -f docker-compose.prod.yml up -d --build\n```\n\n_Using Makefile command_\n\n```sh\nmake run-prod-build\n```\n\n### Development\n\n1. Copy file **.env.example** to **.env** and fill in\n\n_Using docker compose command_\n\n```sh\ndocker compose up -d --build\n```\n\n_Using Makefile command_\n\n```sh\nmake run-dev-build\n```\n\n## Setup database with initial data\n\nThis creates sample users on database.\n\n_Using docker compose command_\n\n```sh\ndocker compose -f docker-compose.yml exec web python -m app.initial_data\n```\n\n_Using Makefile command_\n\n```sh\nmake init-db\n```\n\nYou can connect to the Database using pgAdmin4 and use the credentials from .env file. Database port on local machine has been configured to **5454** on docker-compose-dev.yml file\n\n(Optional) If you prefer you can run pgAdmin4 on a docker container using the following commands, they should executed on different terminals:\n\n_Starts pgadmin_\n\n```sh\nmake pgadmin-run\n```\n\n_Load server configuration (It is required just the first time)_\n\n```sh\nmake pgadmin-load-server\n```\n\n_Remove pgadmin volume_\n\n```sh\nmake pgadmin-clean\n```\n\nThis starts pgamin in [http://localhost:15432](http://localhost:15432).\n\n## Run Alembic migrations (Only if you change the DB model)\n\n_Using docker compose command_\n\n```sh\ndocker compose -f docker-compose.yml exec web alembic revision --autogenerate\ndocker compose -f docker-compose.yml exec web alembic upgrade head\n```\n\n_Using Makefile command_\n\n```sh\nmake add-dev-migration\n```\n\n## Mail Client for send otp code\n\n[Link to the microservice **Mailfort** ](https://github.com/8thgencore/mailfort)\n\n### Generating files from .proto for mail:\nExecute the following command in the `src` directory of your project:\n\n```bash\npython -m grpc_tools.protoc -I=./proto --python_out=./app/generated/ --grpc_python_out=./app/generated/ ./proto/mail/mail.proto\n```\n\nThis command will generate Python files for protobuf and gRPC in the `./src/proto/generated/` directory.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F8thgencore%2Fyuno-backend","html_url":"https://awesome.ecosyste.ms/projects/github.com%2F8thgencore%2Fyuno-backend","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F8thgencore%2Fyuno-backend/lists"}