{"id":20944126,"url":"https://github.com/diversable/test-start-spin","last_synced_at":"2026-04-27T13:32:49.588Z","repository":{"id":223380117,"uuid":"760151191","full_name":"diversable/test-start-spin","owner":"diversable","description":null,"archived":false,"fork":false,"pushed_at":"2024-05-08T17:52:12.000Z","size":48,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"leptos_0.6","last_synced_at":"2025-12-30T22:33:34.975Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/diversable.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":"2024-02-19T21:57:33.000Z","updated_at":"2024-02-19T21:57:39.000Z","dependencies_parsed_at":"2025-01-19T21:31:04.520Z","dependency_job_id":"6ecabf03-3476-47cd-b08a-071009daf08d","html_url":"https://github.com/diversable/test-start-spin","commit_stats":null,"previous_names":["diversable/test-start-spin"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/diversable/test-start-spin","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/diversable%2Ftest-start-spin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/diversable%2Ftest-start-spin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/diversable%2Ftest-start-spin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/diversable%2Ftest-start-spin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/diversable","download_url":"https://codeload.github.com/diversable/test-start-spin/tar.gz/refs/heads/leptos_0.6","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/diversable%2Ftest-start-spin/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32339289,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-26T23:26:28.701Z","status":"online","status_checked_at":"2026-04-27T02:00:06.769Z","response_time":128,"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":[],"created_at":"2024-11-18T23:39:16.773Z","updated_at":"2026-04-27T13:32:49.571Z","avatar_url":"https://github.com/diversable.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cpicture\u003e\n    \u003csource srcset=\"https://raw.githubusercontent.com/leptos-rs/leptos/main/docs/logos/Leptos_logo_Solid_White.svg\" media=\"(prefers-color-scheme: dark)\"\u003e\n    \u003cimg src=\"https://raw.githubusercontent.com/leptos-rs/leptos/main/docs/logos/Leptos_logo_RGB.svg\" alt=\"Leptos Logo\"\u003e\n\u003c/picture\u003e\n\n# Leptos Spin SSR Starter Template\n\nThis is a template for use with the [Leptos][leptos] web framework and the [Spin][spin-install] WASI platform.\n\n[Click here to see the deployed version of this starter](https://spin-leptos-ssr-49mccqzz.fermyon.app).\n\n## Creating Your Repo\n\nFirst, ensure that you have Rust 'nightly' with both the `wasm` and `wasm32-wasi` targets, along with `cargo-generate`\n- `rustup toolchain install nightly --allow-downgrade`\n- `rustup target add wasm32-unknown-unknown`\n- `rustup target add wasm32-wasi`\n- `cargo install cargo-generate`\n\nIf you don't have `spin` installed you can install it with\n\n```bash\ncurl -fsSL https://developer.fermyon.com/downloads/install.sh | bash\n```\n\nOnce you have the Spin CLI tool downloaded, we recommend putting the binary into a folder already on your path, eg\n\n```sh\nsudo mv spin /usr/local/bin/\n```\n\nFor the full [Spin CLI install instructions see here][spin-install].\n\n\u003cbr/\u003e\n\nTo generate your own repo from this starter template, run\n```sh\ncargo generate --git https://github.com/leptos-rs/start-spin\n```\n\nThen\n\n```sh\ncd test-start-spin\n```\n\nto go to your newly created project.\n\n\u003cbr/\u003e\n\nFeel free to explore the project structure, but the best place to start with your application code is in `src/pages/home.rs`.\n\n\nAdditionally, Cargo.toml may need updating as new versions of the dependencies are released, especially if things are not working after a `cargo update`.\n\n## Running \u0026 Developing Your Project\n\nRunning\n```sh\nspin watch\n```\n\nwill build and run your server as well as recompile your code after making changes.\n\nUsing\n```sh\nspin up\n```\nwill build and serve your app on `127.0.0.1:3000` by default. To serve at a different address, use `spin up --listen \u003cADDRESS\u003e`.\n\n\n## Release and Deployment\n\nTo deploy your app to [Fermyon Cloud signup here first][spin-signup]. For more information on [Ferymon Cloud see here][spin-cloud-info].\n\nAfter you have your Fermyon cloud account and have logged in using `spin login`, running\n```sh\nspin build\n```\nwill build your application for release. Running\n\n```sh\nspin deploy\n```\nwill publish your app to Fermyon cloud.\n\nIf you would prefer to deploy your app on own machine or in a VM with Docker rather than on Fermyon Cloud, see [the Spin in Docker setup instructions here][docker-spin]. \n\n\u003cbr/\u003e\n\nIf you would like to deploy your Leptos-Spin app via Kubernetes, see [the setup instructions for Spin on Kubernetes here][k8s-spin].\n\n\n\n[leptos]: https://github.com/leptos-rs/leptos\n[spin-install]: https://developer.fermyon.com/spin/v2/install\n[spin-signup]: https://cloud.fermyon.com/\n[spin-cloud-info]: https://www.fermyon.com/cloud\n[docker-spin]: https://www.fermyon.com/blog/spin-in-docker\n[k8s-spin]: https://developer.fermyon.com/spin/v2/kubernetes\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdiversable%2Ftest-start-spin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdiversable%2Ftest-start-spin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdiversable%2Ftest-start-spin/lists"}