{"id":51587983,"url":"https://github.com/narevai/thin-ops","last_synced_at":"2026-07-11T12:30:52.652Z","repository":{"id":306451035,"uuid":"1026221608","full_name":"narevai/thin-ops","owner":"narevai","description":"Selfhosted FinOps Platform and FOCUS 1.4 format converter","archived":false,"fork":false,"pushed_at":"2026-07-08T18:04:23.000Z","size":20367,"stargazers_count":29,"open_issues_count":7,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-07-08T20:04:27.235Z","etag":null,"topics":["aws","aws-billing","azure-billing","finops","finops-focus","finops-ui","focus","gcp-billing","openai-billing","snowflake-billing"],"latest_commit_sha":null,"homepage":"https://www.narev.ai/docs/oss/thinops","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/narevai.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":"SECURITY.md","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-07-25T14:07:01.000Z","updated_at":"2026-07-08T18:04:11.000Z","dependencies_parsed_at":"2025-10-30T02:34:15.966Z","dependency_job_id":"e4d95d73-b419-4b11-b076-d52374496ce2","html_url":"https://github.com/narevai/thin-ops","commit_stats":null,"previous_names":["narevai/narev","narevai/thin-ops"],"tags_count":11,"template":false,"template_full_name":null,"purl":"pkg:github/narevai/thin-ops","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/narevai%2Fthin-ops","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/narevai%2Fthin-ops/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/narevai%2Fthin-ops/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/narevai%2Fthin-ops/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/narevai","download_url":"https://codeload.github.com/narevai/thin-ops/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/narevai%2Fthin-ops/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35362871,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-07-11T02:00:05.354Z","response_time":104,"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":["aws","aws-billing","azure-billing","finops","finops-focus","finops-ui","focus","gcp-billing","openai-billing","snowflake-billing"],"created_at":"2026-07-11T12:30:50.855Z","updated_at":"2026-07-11T12:30:52.647Z","avatar_url":"https://github.com/narevai.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ThinOps\n\n![ThinOps Banner](./.github/assets/banner.webp)\n\n## Convert any billing into FOCUS format\n\n[![GitHub last commit](https://img.shields.io/github/last-commit/narevai/thin-ops)](https://github.com/narevai/thin-ops/commits)\n[![Latest tag](https://img.shields.io/github/v/tag/narevai/thin-ops?label=latest)](https://github.com/narevai/thin-ops/tags)\n[![Code Size](https://img.shields.io/github/languages/code-size/narevai/thin-ops)](https://github.com/narevai/thin-ops)\n[![License: Apache 2.0](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](LICENSE)\n\n**thin-ops** is a self-hosted FinOps platform. It is built for tracking infrastructure spend and unifying it into a FOCUS format.\n\n![Narev Dashboard](./.github/assets/screenshot.png)\n\n**Cloud platforms we support**:\n\n- AWS\n- Azure\n- GCP\n- OpenAI\n\n\n## Quick Start\n\n### Demo Mode (with sample data)\n\n```bash\ndocker run -d \\\n  --name thin-ops \\\n  -p 8000:8000 \\\n  -v $(pwd)/data:/app/data \\\n  -e DEMO=\"true\" \\\n  ghcr.io/narevai/thin-ops:latest\n```\n\nThen open \u003chttp://localhost:8000\u003e.\n\n### Production\n\nFirst, generate an encryption key:\n\n```bash\npython -c \"from cryptography.fernet import Fernet; \\\nprint(Fernet.generate_key().decode())\"\n```\n\nThen run the container with your generated key:\n\n```bash\ndocker run -d \\\n  --name thin-ops \\\n  -p 8000:8000 \\\n  -v $(pwd)/data:/app/data \\\n  -e ENCRYPTION_KEY=\"replace-with-your-generated-fernet-key\" \\\n  -e ENVIRONMENT=\"production\" \\\n  ghcr.io/narevai/thin-ops:latest\n```\n\nThen open \u003chttp://localhost:8000\u003e.\n\n### Docker Compose\n\nFor a self-hosted install, you can also use Docker Compose:\n\n```yaml\nservices:\n  narev:\n    image: ghcr.io/narevai/thin-ops:latest\n    container_name: thin-ops\n    ports:\n      - \"8000:8000\"\n    volumes:\n      - ./data:/app/data\n    environment:\n      ENVIRONMENT: production\n      ENCRYPTION_KEY: \"replace-with-your-generated-fernet-key\"\n    restart: unless-stopped\n```\n\nStart it with:\n\n```bash\ndocker compose up -d\n```\n\nThen open \u003chttp://localhost:8000\u003e.\n\n### Security\n\nThin-ops does not include built-in authentication yet. For production use, run it behind a reverse proxy, VPN, SSO/auth proxy, or another trusted access layer. Avoid exposing the container directly to the public internet.\n\n- Full production setup in the [Deployment Guide](https://www.narev.ai/docs/narev-oss/getting-started/deployment).\n\n## License\n\nApache 2.0\n\n---\n\n## Acknowledgments\n\nThanks to [@satnaing](https://github.com/satnaing) for the excellent [front end starter](https://github.com/satnaing/shadcn-admin/tree/main)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnarevai%2Fthin-ops","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnarevai%2Fthin-ops","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnarevai%2Fthin-ops/lists"}