{"id":36533906,"url":"https://github.com/toomanysource/atreus","last_synced_at":"2026-01-12T03:04:37.220Z","repository":{"id":189283832,"uuid":"680004077","full_name":"toomanysource/atreus","owner":"toomanysource","description":"Atreus is a high-performance and high-concurrency short video microservice application server built with Kratos.","archived":false,"fork":false,"pushed_at":"2023-09-22T07:18:29.000Z","size":5555,"stargazers_count":9,"open_issues_count":9,"forks_count":10,"subscribers_count":2,"default_branch":"main","last_synced_at":"2024-04-21T17:20:25.868Z","etag":null,"topics":["consul","docker","go","kafka","kratos","makefile","minio","mysql","nginx","redis"],"latest_commit_sha":null,"homepage":"","language":"Go","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/toomanysource.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}},"created_at":"2023-08-18T05:55:21.000Z","updated_at":"2024-04-21T17:20:28.012Z","dependencies_parsed_at":null,"dependency_job_id":"492b7862-1f00-45ed-b408-a9d47ff2f165","html_url":"https://github.com/toomanysource/atreus","commit_stats":null,"previous_names":["toomanysource/re-atreus","toomanysource/atreus"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/toomanysource/atreus","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/toomanysource%2Fatreus","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/toomanysource%2Fatreus/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/toomanysource%2Fatreus/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/toomanysource%2Fatreus/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/toomanysource","download_url":"https://codeload.github.com/toomanysource/atreus/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/toomanysource%2Fatreus/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28332876,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-12T00:36:25.062Z","status":"online","status_checked_at":"2026-01-12T02:00:08.677Z","response_time":98,"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":["consul","docker","go","kafka","kratos","makefile","minio","mysql","nginx","redis"],"created_at":"2026-01-12T03:04:37.152Z","updated_at":"2026-01-12T03:04:37.215Z","avatar_url":"https://github.com/toomanysource.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Atreus\n\n[English](README.md) | [中文](README_cn.md)\n\n**Atreus** is a high-concurrency and high-performance short video microservice application server built with **Kratos**.\n\n- **high-performance**: Use redis for high performance and high speed reads at the memory level. Uses minio for millisecond upload storage.\n- **high-concurrency**: Use Kafka as an efficient asynchronous message processing tool to improve system throughput and stability.\n\n## Project Structure\n\nAtreus is refer to [Kratos Layout](https://github.com/go-kratos/kratos-layout). The design concept is based on **DDD**.\n![](docs/img/readme/atreus-project-structure.png)\n\n```\n❯ tree -L 1\n.\n├── LICENSE\n├── README.md\n├── README_cn.md\n├── _data           // store all services and component data.\n├── api             // `.proto` API files and the `pb.go` files which generated.\n├── app             // services implements\n├── configs         // configuration files for docker.\n├── docker\n├── third_party     // third_party proto  for api dependencies\n├── pkg             // third-party and universal packages\n├── middleware      // custom middleware\n├── docs\n├── Makefile\n├── make\n├── go.mod\n└── go.sum\n```\n\n**App** structure\n\n```\n.\n├── cmd             // the entry point of the services\n│   ├── main.go\n│   ├── wire.go     // wire library is for dependency injection\n│   └── wire_gen.go\n├── configs         // configuration files for local development.\n└── internal        // business logic implements\n    ├── biz         // the layer for composing business logics.\n    ├── conf        // the structure for configuration parsing, generated from .proto file\n    ├── data        // for accessing data sources.\n    ├── server      // the creation of http and grpc instance.\n    └── service     // the service layer which implements API definition.\n```\n\n## Tech Stack\n\n- [Kratos](https://github.com/go-kratos/kratos)\n- [MySQL](https://www.mysql.com/)\n- [GORM](https://github.com/go-gorm/gorm)\n- [Redis](https://github.com/redis/go-redis)\n- [Kafka](https://github.com/segmentio/kafka-go)\n- [Minio](https://github.com/minio/minio)\n- [nginx](https://github.com/nginx/nginx)\n- [consul](https://github.com/hashicorp/consul)\n\n## Get Started\n\nWe build the project in Docker. You just run the following command:\n\n```\nmake docker-compose-up\n```\n\n\u003e Attation! You need change the value of field `endpointExtra` in minio configation to your local host ip. File in `/configs/service/publish/config.yaml`.\n\n## How to Contribute\n\nRead [issue](https://github.com/toomanysource/atreus/issues/103) first. You can view more details to [contribute](./docs/contribute).\n\n## Contributors\n\n- [alilestera](https://github.com/alilestera)\n- [intyouss](https://github.com/intyouss)\n- [mo3et](https://github.com/mo3et)\n- [Dyamidsteve](https://github.com/Dyamidsteve)\n- [meguminkin](https://github.com/meguminkin)\n- [FirwoodLin](https://github.com/FirwoodLin)\n- [Li1Mo0N](https://github.com/Li1Mo0N)\n\n## License\n\nAtreus is open-sourced software licensed under the [Apache License 2.0](./LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftoomanysource%2Fatreus","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftoomanysource%2Fatreus","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftoomanysource%2Fatreus/lists"}