{"id":39584737,"url":"https://github.com/acheul/sycamore-template","last_synced_at":"2026-01-26T15:01:15.629Z","repository":{"id":232393196,"uuid":"784258384","full_name":"acheul/sycamore-template","owner":"acheul","description":"Generates sycamore templates","archived":false,"fork":false,"pushed_at":"2025-11-19T17:23:28.000Z","size":267,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-11-19T19:14:44.823Z","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":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/acheul.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,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-04-09T13:53:42.000Z","updated_at":"2025-11-19T17:23:32.000Z","dependencies_parsed_at":null,"dependency_job_id":"5333e408-0ddd-4ab4-9ce7-06df84aab673","html_url":"https://github.com/acheul/sycamore-template","commit_stats":null,"previous_names":["acheul/sycamore-template"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/acheul/sycamore-template","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/acheul%2Fsycamore-template","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/acheul%2Fsycamore-template/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/acheul%2Fsycamore-template/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/acheul%2Fsycamore-template/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/acheul","download_url":"https://codeload.github.com/acheul/sycamore-template/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/acheul%2Fsycamore-template/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28781308,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-26T13:55:28.044Z","status":"ssl_error","status_checked_at":"2026-01-26T13:55:26.068Z","response_time":59,"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":[],"created_at":"2026-01-18T07:35:27.099Z","updated_at":"2026-01-26T15:01:15.624Z","avatar_url":"https://github.com/acheul.png","language":"Rust","readme":"⚠️ ***This crate got DEPRECATED: Won't be maintained anymore***\n\nThis crate was a personal project developed independently from the official Sycamore versions. And it's not going to be updated or maintained. For information on using Sycamore framework, refer to its official site.\n\n\u003cbr/\u003e\n\n# Sycamore Template Generator\n[![Crates.io](https://img.shields.io/crates/v/sycamore-template)](https://crates.io/crates/sycamore-template)\n\nInitiate a [sycamore](https://sycamore-rs.netlify.app/) project (since sycamore version of 0.9)\n\n## Installation\n```\ncargo install sycamore-template\n```\n\n## Use\n\n* Simple example: this command generates a sycamore project named \"ex-project\" (see directory `ex-project`)\n```\nsycamore-template --name=ex-project\n```\n\n* Full example: this command generates a sycamore project named \"ex-router-project\", which using `sycamore-router`. Also the `index.html` will have head lines of `copy-dir` and `css`. (see directory `ex-router-project`)\n```\nsycamore-template\n  --name=ex-router-project\n  --router=true\n  --copy-dir=\"/assets\"\n  --css=\"/assets/style.css\"\n```\n\n## Options\n```\nsycamore-template\n  --name=project-name\n  --router=false\n  --copy-dir=\"/assets\"\n  --css=\"/style.css\"\n  --favicon=\"/favicon.svg\"\n```\n\n* name\n  - project's name. This argument is required.\n* router\n  - bool. default: false.\n  - Whether or not to use `sycamore-router`\n* copy-dir\n  - Optional. Add a head line in the `index.html` file with given value:\n  - `\u003clink data-trunk rel=\"copy-dir\" href=\"{value}\"/\u003e`\n  - This does not make an actual directory.\n* css\n  - Optional. Add a head line in the `index.html` file with given value:\n  - `\u003clink data-trunk rel=\"css\" href=\"{value}\"/\u003e`\n  - This does not make an actual file.\n* favicon\n  - Optional. Add a favicon head line in the `index.html` with given value:\n  - `\u003clink rel=\"icon\" type=\"image/x-icon\" href=\"{value}\"\u003e`\n* version:\n  - At this moment, sycamore version `0.9` is used for default;\n\n\n# Logs\n```yaml\n* `v0.1.0-beta.4`\n  - follow up of sycamore v0.9.0-beta.4.\n* `v0.1.1`\n  - stablized with sycamore v0.9\n* `v0.1.2`\n  - added `\u003cbody\u003e\u003c/body\u003e` for `index.html`\n```","funding_links":[],"categories":["\u003ca name=\"Rust\"\u003e\u003c/a\u003eRust"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Facheul%2Fsycamore-template","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Facheul%2Fsycamore-template","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Facheul%2Fsycamore-template/lists"}