{"id":27219965,"url":"https://github.com/riipandi/rusttp","last_synced_at":"2026-05-15T13:05:40.267Z","repository":{"id":286823746,"uuid":"962544156","full_name":"riipandi/rusttp","owner":"riipandi","description":"Minimal full-stack Rust and Vite starter project template for building application with Axum and Clap.","archived":false,"fork":false,"pushed_at":"2026-04-18T20:00:26.000Z","size":90,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-04-26T17:34:03.224Z","etag":null,"topics":["axum","boilerplate","clap-rs","postgres","rest-api","rust","sqlx","starter-template"],"latest_commit_sha":null,"homepage":"http://localhost:8000","language":"Rust","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/riipandi.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":".github/FUNDING.yaml","license":"LICENSE-APACHE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":".github/SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":"riipandi"}},"created_at":"2025-04-08T10:05:53.000Z","updated_at":"2026-04-18T20:00:08.000Z","dependencies_parsed_at":"2025-04-10T07:13:27.599Z","dependency_job_id":null,"html_url":"https://github.com/riipandi/rusttp","commit_stats":null,"previous_names":["riipandi/rusttp"],"tags_count":1,"template":true,"template_full_name":null,"purl":"pkg:github/riipandi/rusttp","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riipandi%2Frusttp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riipandi%2Frusttp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riipandi%2Frusttp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riipandi%2Frusttp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/riipandi","download_url":"https://codeload.github.com/riipandi/rusttp/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riipandi%2Frusttp/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33067493,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-15T11:35:32.926Z","status":"ssl_error","status_checked_at":"2026-05-15T11:35:31.362Z","response_time":103,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5: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":["axum","boilerplate","clap-rs","postgres","rest-api","rust","sqlx","starter-template"],"created_at":"2025-04-10T06:50:10.601Z","updated_at":"2026-05-15T13:05:40.252Z","avatar_url":"https://github.com/riipandi.png","language":"Rust","funding_links":["https://github.com/sponsors/riipandi"],"categories":[],"sub_categories":[],"readme":"# 🦀 Rusttp\n\n[![(Rust)](https://img.shields.io/badge/rust-v1.82-orange.svg?logo=rust)](https://www.rust-lang.org/)\n[![GitHub release (latest SemVer)](https://img.shields.io/github/v/release/riipandi/rusttp?logo=rust)](https://github.com/riipandi/rusttp/releases)\n[![CI Test](https://github.com/riipandi/rusttp/actions/workflows/test.yml/badge.svg)](https://github.com/riipandi/rusttp/actions/workflows/test.yml)\n[![CI Release](https://github.com/riipandi/rusttp/actions/workflows/release.yml/badge.svg)](https://github.com/riipandi/rusttp/actions/workflows/release.yml)\n[![Contribution welcome](https://img.shields.io/badge/Contributions-welcome-gray.svg)](https://github.com/riipandi/rusttp/graphs/contributors)\n\n---\n\nMinimal Rust starter project template for building application with Axum and Clap.\n\n\u003e [!NOTE]\n\u003e _This is a template for [cargo-generate](https://cargo-generate.github.io/cargo-generate/)._\n\u003e _Read the [documentation](#quick-start) to get started._\n\n## Quick Start\n\nYou will need `Rust \u003e=1.82`, `Docker \u003e= 27.5`, and `Docker Compose \u003e= 2.32` installed on your machine.\n\n### Create New Project\n\nInstall [`cargo-generate`](https://crates.io/crates/cargo-generate) sub-command then execute:\n\n```sh\ncargo generate riipandi/rusttp -b main -n myapp-name\n```\n\n\u003e Don't forget to change `myapp-name` with your real application name.\n\n### Up and Running\n\n1. Install the required toolchain \u0026 SDK: [Rust][install-rust], [Docker][docker], [watchexec][watchexec], [just][just], and [lefthook][lefthook].\n2. Create `.env` file or copy from `.env.example`, then configure required variables.\n3. Generate application secret key, use this command: `just generate-key`\n4. Run project in development mode: `just dev`\n\nType `just` on your terminal to see available tasks.\n\n## Docker Container\n\n### Development Server\n\n```sh\n# Start development server\ndocker-compose -f compose.yaml up -d --remove-orphans\n\n# Stop development server\ndocker-compose -f compose.yaml down --remove-orphans\n```\n\n### Build Container\n\n```sh\ndocker build -f Dockerfile . -t rusttp:latest\n```\n\n### List Docker Image\n\n```sh\ndocker image list --filter reference=rusttp:latest\n```\n\n### Testing Container\n\n```sh\ndocker run --network=host --rm -it --env-file .env --name rusttp rusttp:latest\n```\n\n### Push Images\n\nSign in to container registry:\n\n```sh\necho $REGISTRY_TOKEN | docker login REGISTRY_URL --username YOUR_USERNAME --password-stdin\n```\n\nReplace `REGISTRY_URL` with your container registry, ie: `ghcr.io` or `docker.io`\n\nPush docker image:\n\n```sh\ndocker push REGISTRY/ORG/rusttp:latest\n```\n\n## Deployment\n\nRead [DEPLOY.md](./DEPLOY.md) for detailed documentation.\n\n## Contributions\n\nWelcome, and thank you for your interest in contributing to this project! There are many ways in which you can contribute,\nbeyond writing code. You can read this repository’s [Contributing Guidelines](./CONTRIBUTING.md) to learn how to contribute.\n\n## License\n\nLicensed under either of [Apache License 2.0][license-apache] or [MIT license][license-mit] at your option.\n\n\u003e Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this project by you,\n\u003e as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.\n\nCopyrights in this project are retained by their contributors.\n\nSee the [LICENSE-APACHE](./LICENSE-APACHE) and [LICENSE-MIT](./LICENSE-MIT) files for more information.\n\n---\n\n\u003csub\u003e🤫 Psst! If you like my work you can support me via [GitHub sponsors](https://github.com/sponsors/riipandi).\u003c/sub\u003e\n\n[![Creator Badge](https://badgen.net/badge/icon/Crafted%20by%20Aris%20Ripandi?label\u0026color=black\u0026labelColor=black)][riipandi-x]\n\n[docker]: https://docs.docker.com/engine/install/\n[install-rust]: https://www.rust-lang.org/tools/install\n[just]: https://just.systems/man/en/\n[lefthook]: https://lefthook.dev/installation/index.html\n[license-apache]: https://choosealicense.com/licenses/apache-2.0/\n[license-mit]: https://choosealicense.com/licenses/mit/\n[riipandi-x]: https://x.com/intent/follow?screen_name=riipandi\n[watchexec]: https://github.com/watchexec/watchexec\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Friipandi%2Frusttp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Friipandi%2Frusttp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Friipandi%2Frusttp/lists"}