{"id":51261620,"url":"https://github.com/europanite/tauri_template","last_synced_at":"2026-06-29T12:32:11.603Z","repository":{"id":357841566,"uuid":"1238777557","full_name":"europanite/tauri_template","owner":"europanite","description":"tauri_template","archived":false,"fork":false,"pushed_at":"2026-05-22T15:01:11.000Z","size":217,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-22T16:54:37.089Z","etag":null,"topics":["jest","rust","tauri","tauri-app","tauri-apps","tauri-template","tauri-v2","tauri2","template","typescipt","vite"],"latest_commit_sha":null,"homepage":"https://europanite.github.io/tauri_template/","language":"Shell","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/europanite.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","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":"2026-05-14T12:51:20.000Z","updated_at":"2026-05-22T15:01:19.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/europanite/tauri_template","commit_stats":null,"previous_names":["europanite/tauri_template"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/europanite/tauri_template","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/europanite%2Ftauri_template","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/europanite%2Ftauri_template/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/europanite%2Ftauri_template/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/europanite%2Ftauri_template/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/europanite","download_url":"https://codeload.github.com/europanite/tauri_template/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/europanite%2Ftauri_template/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34927675,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-29T02:00:05.398Z","response_time":58,"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":["jest","rust","tauri","tauri-app","tauri-apps","tauri-template","tauri-v2","tauri2","template","typescipt","vite"],"created_at":"2026-06-29T12:32:10.508Z","updated_at":"2026-06-29T12:32:11.585Z","avatar_url":"https://github.com/europanite.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# [Tauri Template](https://github.com/europanite/tauri_template \"Tauri Template\")\n\n[![License](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)\n![OS](https://img.shields.io/badge/OS-Linux%20%7C%20macOS%20%7C%20Windows-blue)\n\n[![ci](https://github.com/europanite/tauri_template/actions/workflows/ci.yml/badge.svg)](https://github.com/europanite/tauri_template/actions/workflows/ci.yml)\n[![pages](https://github.com/europanite/tauri_template/actions/workflows/pages.yml/badge.svg)](https://github.com/europanite/tauri_template/actions/workflows/pages.yml)\n[![tauri](https://github.com/europanite/tauri_template/actions/workflows/tauri.yml/badge.svg)](https://github.com/europanite/tauri_template/actions/workflows/tauri.yml)\n[![Release Desktop Apps](https://github.com/europanite/tauri_template/actions/workflows/release-desktop.yml/badge.svg)](https://github.com/europanite/tauri_template/actions/workflows/release-desktop.yml)\n\n![\"image\"](./assets/images/web_ui.png)\n\nA minimal template for building, validating, and releasing paid desktop applications continuously.\n\nThis template uses **Tauri v2 + Vite + React + TypeScript**. \n\n## Initial setup\n\n```bash\nnpm install\nnpm run tauri dev\n```\n\n## Local validation\n\n```bash\nnpm run check\nnpm run build\nnpm run tauri build\n```\n\nOr run the bundled release check script:\n\n```bash\nbash scripts/release-check.sh\n```\n\n## Create a new app from this template\n\n```bash\nbash scripts/set-app-meta.sh \\\n  \"tauri_template\" \\\n  \"com.example.tauri_template\" \\\n  \"0.1.0\"\n```\n\nArguments:\n\n1. `productName`\n2. `identifier`\n3. `version`\n\nThen edit these files:\n\n- `docs/APP_SPEC.md`\n- `src/App.tsx`\n- `src-tauri/src/lib.rs`\n- `README.md`\n\n## CI\n\nThe standard validation workflow runs on `push` and `pull_request`.\n\n```bash\nnpm run check\ncargo test --manifest-path src-tauri/Cargo.toml\n```\n\n```bash\n$env:Path = \"C:\\Program Files\\nodejs;$env:USERPROFILE\\.cargo\\bin;$env:Path\"\n\ncd C:\\Users\\miked\\anime_tag_vault\n\nnpm.cmd exec -- tauri info\nnpm.cmd exec -- tauri build\n```\n\n## Release\n\nPush a tag such as `v0.1.0` to create a GitHub Release draft and upload artifacts for each OS.\n\n```bash\ngit tag v0.1.0\ngit push origin v0.1.0\n```\n\nYou can also run the release workflow manually:\n\n1. Open GitHub Actions.\n2. Select the `release` workflow.\n3. Click `Run workflow`.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feuropanite%2Ftauri_template","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Feuropanite%2Ftauri_template","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feuropanite%2Ftauri_template/lists"}