{"id":49222847,"url":"https://github.com/prayagraj22/sirius-admin","last_synced_at":"2026-04-24T05:02:38.377Z","repository":{"id":342538561,"uuid":"1174304124","full_name":"PrayagRaj22/Sirius-Admin","owner":"PrayagRaj22","description":"Sirius Admin is a cloud-ready backend administration service built with FastAPI and PostgreSQL, designed to demonstrate production-level backend architecture and modern DevOps practices.","archived":false,"fork":false,"pushed_at":"2026-03-06T09:56:18.000Z","size":9,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-03-06T13:56:58.546Z","etag":null,"topics":["ci-cd","devops","docker","fastapi","podman-compose","postgresql"],"latest_commit_sha":null,"homepage":"","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/PrayagRaj22.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":"2026-03-06T09:39:50.000Z","updated_at":"2026-03-06T09:56:22.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/PrayagRaj22/Sirius-Admin","commit_stats":null,"previous_names":["prayagraj22/sirius-admin"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/PrayagRaj22/Sirius-Admin","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PrayagRaj22%2FSirius-Admin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PrayagRaj22%2FSirius-Admin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PrayagRaj22%2FSirius-Admin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PrayagRaj22%2FSirius-Admin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/PrayagRaj22","download_url":"https://codeload.github.com/PrayagRaj22/Sirius-Admin/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PrayagRaj22%2FSirius-Admin/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32209897,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-24T03:15:14.334Z","status":"ssl_error","status_checked_at":"2026-04-24T03:15:11.608Z","response_time":64,"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":["ci-cd","devops","docker","fastapi","podman-compose","postgresql"],"created_at":"2026-04-24T05:02:36.101Z","updated_at":"2026-04-24T05:02:38.359Z","avatar_url":"https://github.com/PrayagRaj22.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv align='center'\u003e\n\n# Sirius Admin\n\n\u003c/div\u003e\n\n**Sirius Admin** is a cloud-ready backend administration service built with **FastAPI** and **PostgreSQL**, designed to demonstrate production-level backend architecture and modern DevOps practices.\n\nThe service focuses on **high-performance APIs, raw SQL database interactions, and scalable backend design** without relying on ORMs. Authentication is intentionally excluded to allow integration with a dedicated authentication service in a microservice architecture.\n\n---\n\n# Features\n\n* High-performance APIs built with FastAPI\n* Raw SQL queries (no ORM abstraction)\n* Async database access using connection pooling\n* Modular backend architecture\n* Admin data management APIs\n* Containerization-ready structure\n* Cloud deployment ready\n* CI/CD friendly repository structure\n\n---\n\n# Tech Stack\n\n### Backend\n\n* **FastAPI** – High-performance Python API framework\n* **Uvicorn** – ASGI server\n* **asyncpg** – Async PostgreSQL driver\n* **Pydantic** – Data validation and configuration\n\n### Database\n\n* **PostgreSQL** – Relational database\n\n### DevOps \u0026 Tooling\n\n* **Docker** – Containerization\n* **GitHub Actions** – CI/CD pipelines\n* **Pytest** – Testing framework\n* **Black** – Code formatting\n* **Flake8** – Linting\n\n---\n\n# Architecture Overview\n\nSirius Admin is designed to operate as a **data administration microservice**. Authentication and authorization can be handled by a separate service or API gateway.\n\nExample architecture:\n\n```\nAuth Service\n     │\n     ▼\nAPI Gateway\n     │\n     ▼\nSirius Admin\n     │\n     ▼\nPostgreSQL\n```\n\nThis design reflects **real-world microservice architecture patterns**.\n\n---\n\n# Installation\n\n## Clone Repository\n\n```bash\ngit clone https://github.com/your-username/sirius-admin.git\ncd sirius-admin\n```\n\n## Create Virtual Environment\n\n```\npython -m venv venv\n```\n\nActivate environment:\n\nLinux / macOS\n\n```\nsource venv/bin/activate\n```\n\nWindows\n\n```\nvenv\\Scripts\\activate\n```\n\n## Install Dependencies\n\n```\npip install -r requirements.txt\n```\n\n---\n\n# Database Setup\n\nInstall and run **PostgreSQL** locally.\n\nCreate database:\n\n```sql\nCREATE DATABASE sirius_admin;\n```\n\nConfigure the database connection using environment variables.\n\nExample:\n\n```\nDATABASE_URL=postgresql://postgres:postgres@localhost:5432/sirius_admin\n```\n\n---\n\n# Running the Application\n\nStart the API server using **Uvicorn**:\n\n```\nuvicorn app.main:app --reload\n```\n\nAPI documentation will be available at:\n\n```\nhttp://127.0.0.1:8000/docs\n```\n\n---\n\n# Example API Endpoints\n\n### Users\n\n```\nGET /users\nGET /users/{id}\nPOST /users\nDELETE /users/{id}\n```\n\n### Admin\n\n```\nGET /admin/stats\nGET /admin/audit-logs\n```\n\n---\n\n# Running Tests\n\nRun the test suite:\n\n```\npytest\n```\n\n---\n\n# Docker (Planned)\n\nThe project is structured to support containerized deployment using **Docker**.\n\nExample services:\n\n* FastAPI application container\n* PostgreSQL database container\n\n---\n\n# Cloud Deployment (Planned)\n\nThe service can be deployed on modern cloud platforms such as:\n\n* **Amazon Web Services**\n* **Google Cloud**\n* **Microsoft Azure**\n\nTypical deployment architecture:\n\n```\nInternet\n   │\nLoad Balancer\n   │\nFastAPI Containers\n   │\nPostgreSQL Database\n```\n\n---\n\n# Project Goals\n\nSirius Admin is designed as a **backend engineering and DevOps portfolio project** demonstrating:\n\n* Raw SQL database interactions\n* High-performance API development\n* Scalable backend architecture\n* Microservice-friendly service design\n* Cloud-ready infrastructure\n\n---\n\n# License\n\nThis project is released under the MIT License.\n\n---\n\n# Author\n\nDeveloped as a **backend engineering and cloud-focused portfolio project**.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fprayagraj22%2Fsirius-admin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fprayagraj22%2Fsirius-admin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fprayagraj22%2Fsirius-admin/lists"}