{"id":18578016,"url":"https://github.com/takeuchi-shogo/clean-architecture-rust","last_synced_at":"2026-04-12T05:33:58.892Z","repository":{"id":133967761,"uuid":"583716598","full_name":"takeuchi-shogo/clean-architecture-rust","owner":"takeuchi-shogo","description":"using Rocket and Diesel, Docker etc...","archived":false,"fork":false,"pushed_at":"2023-01-02T04:23:42.000Z","size":28,"stargazers_count":1,"open_issues_count":2,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-01-03T18:52:11.358Z","etag":null,"topics":["clean-architecture","diesel-rs","docker","docker-compose","nginx","rocket","rust"],"latest_commit_sha":null,"homepage":"","language":"Rust","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/takeuchi-shogo.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-30T17:13:48.000Z","updated_at":"2023-08-16T09:42:49.000Z","dependencies_parsed_at":null,"dependency_job_id":"01f6ab64-5155-4224-8376-207e24021049","html_url":"https://github.com/takeuchi-shogo/clean-architecture-rust","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/takeuchi-shogo/clean-architecture-rust","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/takeuchi-shogo%2Fclean-architecture-rust","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/takeuchi-shogo%2Fclean-architecture-rust/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/takeuchi-shogo%2Fclean-architecture-rust/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/takeuchi-shogo%2Fclean-architecture-rust/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/takeuchi-shogo","download_url":"https://codeload.github.com/takeuchi-shogo/clean-architecture-rust/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/takeuchi-shogo%2Fclean-architecture-rust/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31705574,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-12T05:11:36.334Z","status":"ssl_error","status_checked_at":"2026-04-12T05:11:27.332Z","response_time":58,"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":["clean-architecture","diesel-rs","docker","docker-compose","nginx","rocket","rust"],"created_at":"2024-11-06T23:32:53.241Z","updated_at":"2026-04-12T05:33:58.879Z","avatar_url":"https://github.com/takeuchi-shogo.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n# Rust application\n\n## Requirement\n- container Docker\n- languege Rust\n- database Mysql\n- web_server Nginx\n\n\n## Overall structure\n\n### Docker\n\n_Dockerfile is written in each directory under ./docker._\n\n\u003cpre\u003e\n.\n├── docker-compose.yml\n├── mysql\n│   └── Dockerfile\n├── nginx\n│   └── Dockerfile\n└── rust\n    └── Dockerfile\n\u003c/pre\u003e\n\n### Application\n\n\u003cpre\u003e\n.\n├── src \u003c- application folder\n├── target\n├── .gitignore\n├── Cargo.lock\n└── Cargo.toml\n\u003c/pre\u003e\n\n#### using languege and framwork\n\nLanguege __Rust__\n\nFramwork\n- __Rocket__\n- __Diesel__\n\n#### Clean archtecture\n\n\u003cpre\u003e\n./src\n├── domain\n│   ├── mod.rs\n│   ├── user_profiles.rs\n│   └── users.rs\n├── infrastructure\n│   ├── config.rs\n│   ├── db.rs\n│   ├── mod.rs\n│   └── routing.rs\n├── interface\n│   ├── controllers\n│   │   ├── mod.rs\n│   │   └── product\n│   │       ├── mod.rs\n│   │       └── users_controller.rs\n│   ├── gateways\n│   │   ├── database\n│   │   │   └── mod.rs\n│   │   ├── gateways\n│   │   │   └── mod.rs\n│   │   └── mod.rs\n│   └── mod.rs\n├── lib.rs\n├── main.rs\n└── usecase\n    ├── mod.rs\n    ├── product\n    │   ├── mod.rs\n    │   └── user_interactor.rs\n    └── repositories\n        └── mod.rs\n\u003c/pre\u003e\n\n__There is a possibility that it will increase in the future.__\nCurrently the above contents.\n\n### Database\n\n- Mysql\n\n\u003cpre\u003e\n.\n├── config\n│   └── my.conf\n└── sql\n    └── 01_init_db.sql\n\u003c/pre\u003e\n\n### Web server\n\n- Nginx\n\n\u003cpre\u003e\n.\n└── default.conf\n\u003c/pre\u003e\n\n\n## Description\nRust and Mysql and Nginx sample application.\n\n\n## Author\n\n[Twitter Account](https://twitter.com/shogo_mthr123)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftakeuchi-shogo%2Fclean-architecture-rust","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftakeuchi-shogo%2Fclean-architecture-rust","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftakeuchi-shogo%2Fclean-architecture-rust/lists"}