{"id":20796723,"url":"https://github.com/synphonyte/briefpappe-rs","last_synced_at":"2026-02-01T19:31:12.673Z","repository":{"id":151586615,"uuid":"624401958","full_name":"Synphonyte/briefpappe-rs","owner":"Synphonyte","description":null,"archived":false,"fork":false,"pushed_at":"2024-12-02T22:58:39.000Z","size":936,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-04-09T19:46:46.638Z","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/Synphonyte.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":"2023-04-06T11:44:38.000Z","updated_at":"2024-12-02T22:58:43.000Z","dependencies_parsed_at":"2023-12-09T22:26:13.373Z","dependency_job_id":"91d44bca-f50c-464e-9df7-7ec5441d8a34","html_url":"https://github.com/Synphonyte/briefpappe-rs","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Synphonyte/briefpappe-rs","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Synphonyte%2Fbriefpappe-rs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Synphonyte%2Fbriefpappe-rs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Synphonyte%2Fbriefpappe-rs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Synphonyte%2Fbriefpappe-rs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Synphonyte","download_url":"https://codeload.github.com/Synphonyte/briefpappe-rs/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Synphonyte%2Fbriefpappe-rs/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28987274,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-01T18:17:03.387Z","status":"ssl_error","status_checked_at":"2026-02-01T18:16:57.287Z","response_time":56,"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":"2024-11-17T16:28:49.962Z","updated_at":"2026-02-01T19:31:12.656Z","avatar_url":"https://github.com/Synphonyte.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 Axum Starter Template\n\nThis is a template for use with the [Leptos](https://github.com/leptos-rs/leptos) web framework and the [cargo-leptos](https://github.com/akesson/cargo-leptos) tool using [Axum](https://github.com/tokio-rs/axum).\n\n## Creating your template repo\n\nIf you don't have `cargo-leptos` installed you can install it with\n\n```bash\ncargo install cargo-leptos\n```\n\nThen run\n```bash\ncargo leptos new --git leptos-rs/start-axum\n```\n\nto generate a new project template.\n\n```bash\ncd {{project-name}}\n```\n\nto go to your newly created project.  \nFeel free to explore the project structure, but the best place to start with your application code is in `src/app.rs`.  \nAddtionally, 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 your project\n\n```bash\ncargo leptos watch\n```\n\n## Installing Additional Tools\n\nBy default, `cargo-leptos` uses `nightly` Rust, `cargo-generate`, and `sass`. If you run into any trouble, you may need to install one or more of these tools.\n\n1. `rustup toolchain install nightly --allow-downgrade` - make sure you have Rust nightly\n2. `rustup target add wasm32-unknown-unknown` - add the ability to compile Rust to WebAssembly\n3. `cargo install cargo-generate` - install `cargo-generate` binary (should be installed automatically in future)\n4. `npm install -g sass` - install `dart-sass` (should be optional in future\n\n## Compiling for Release\n```bash\ncargo leptos build --release\n```\n\nWill generate your server binary in target/server/release and your site package in target/site\n\n## Testing Your Project\n```bash\ncargo leptos end-to-end\n```\n\n```bash\ncargo leptos end-to-end --release\n```\n\nCargo-leptos uses Playwright as the end-to-end test tool.  \nTests are located in end2end/tests directory.\n\n## Executing a Server on a Remote Machine Without the Toolchain\nAfter running a `cargo leptos build --release` the minimum files needed are:\n\n1. The server binary located in `target/server/release`\n2. The `site` directory and all files within located in `target/site`\n\nCopy these files to your remote server. The directory structure should be:\n```text\n{{project-name}}\nsite/\n```\nSet the following environment variables (updating for your project as needed):\n```text\nLEPTOS_OUTPUT_NAME=\"{{project-name}}\"\nLEPTOS_SITE_ROOT=\"site\"\nLEPTOS_SITE_PKG_DIR=\"pkg\"\nLEPTOS_SITE_ADDR=\"127.0.0.1:3000\"\nLEPTOS_RELOAD_PORT=\"3001\"\n```\nFinally, run the server binary.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsynphonyte%2Fbriefpappe-rs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsynphonyte%2Fbriefpappe-rs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsynphonyte%2Fbriefpappe-rs/lists"}