{"id":17757815,"url":"https://github.com/abilityapps/tauri-template","last_synced_at":"2026-04-10T12:31:59.568Z","repository":{"id":259478524,"uuid":"868285248","full_name":"abilityapps/tauri-template","owner":"abilityapps","description":"Quickly bootstrap personal, local desktop apps!","archived":false,"fork":false,"pushed_at":"2025-05-22T03:01:06.000Z","size":14499,"stargazers_count":3,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-05-22T04:19:03.894Z","etag":null,"topics":["biomejs","bun","postgres","react","shadcn-ui","sqlite","sqlx","tailwindcss","tauri","vite"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","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/abilityapps.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,"zenodo":null}},"created_at":"2024-10-06T00:59:40.000Z","updated_at":"2025-05-22T03:01:10.000Z","dependencies_parsed_at":"2024-10-25T21:41:54.620Z","dependency_job_id":"d835528f-57cf-4f04-bc5f-b3fb2587b8cd","html_url":"https://github.com/abilityapps/tauri-template","commit_stats":null,"previous_names":["abilityapps/tauri-template"],"tags_count":0,"template":true,"template_full_name":null,"purl":"pkg:github/abilityapps/tauri-template","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abilityapps%2Ftauri-template","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abilityapps%2Ftauri-template/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abilityapps%2Ftauri-template/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abilityapps%2Ftauri-template/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/abilityapps","download_url":"https://codeload.github.com/abilityapps/tauri-template/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abilityapps%2Ftauri-template/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31642747,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-10T07:40:12.752Z","status":"ssl_error","status_checked_at":"2026-04-10T07:40:11.664Z","response_time":98,"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":["biomejs","bun","postgres","react","shadcn-ui","sqlite","sqlx","tailwindcss","tauri","vite"],"created_at":"2024-10-26T17:08:53.764Z","updated_at":"2026-04-10T12:31:59.552Z","avatar_url":"https://github.com/abilityapps.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Tauri Template\n\nThis template should help get you started developing completely local, cross-platform desktop apps.\n\n## Starting the app\n\n1. `bun i`\n2. `bunx tauri dev`\n\n## Database Setup\n\nBy default, `tauri-template` comes with an embedded SQLite database named `tauri-template.db`.\nYou can override this with the following steps:\n\n1. Choose between `SQLite` or `PostgreSQL`\n2. Set `DATABASE_URL` in `src-tauri/.env`:\n\n   `sqlite:\u003cname\u003e.db` for SQLite\n\n   `postgres://postgres@localhost/\u003cname\u003e` for Postgres (or cloud-hosted URL)\n\n1. `sqlx migrate add \u003cname\u003e` creates a migration file in `migrations/\u003ctimestamp\u003e-\u003cname\u003e.sql`. Run this command in `src-tauri/` Add your database schema changes here. \n2. Next time you restart your app, your migrations will be applied. `sqlx migrate run` applies your migrations manually. \n\nGo [here](https://github.com/launchbadge/sqlx/blob/main/sqlx-cli/README.md#reverting-migrations) for information on migration reverts.\n\nRust does not support cetain database types. You must create serializers for those data types.\nRead here for [Sqlite](https://docs.rs/sqlx/latest/sqlx/sqlite/types/) and here for [Postgres](https://docs.rs/sqlx/latest/sqlx/postgres/types/index.html).\n\nYou can look [here](https://github.com/shouryan01/weekability/blob/267f160b8ff751fe193beda9bc11a1d23b6a3c44/src-tauri/src/db/schema.rs) for an example on how to serialize Postgres `Numeric` and `Date` types in Rust using the `time` and `rust_decimal` crates.\n\n## Building the app\n\n`bun run tauri build`\n\n## Recommended IDE Setup\n\n[Rust Rover](https://www.jetbrains.com/rust/) - this is the default recommendation. It is free for non-commercial use.\n\n[VS Code](https://code.visualstudio.com/) - install all the recommendations from `.vscode/extensions.json`. This should be an automatic popup.\n\n## Stack\n\n### Backend\n- [Tauri](http://tauri.app/)\n- [SQLite](https://www.sqlite.org) | [Postgres](https://www.postgresql.org) with [sqlx](https://github.com/launchbadge/sqlx)\n\nEasiest way to use Postgres on Mac is [Postgres.app](https://postgresapp.com)\n\n### Frontend\n- [React](http://react.dev/)\n- [Bun](https://bun.sh) + [Vite](https://vite.dev)\n- [Tanstack Router](https://tanstack.com/router/latest)\n- [Tailwindcss](https://tailwindcss.com)\n- [shadcn/ui](https://ui.shadcn.com)\n- [Biomejs](https://biomejs.dev)\n\nThis template was manually created. For future project creations, you can use the new (and excellent!) `create-tsrouter-app@latest` with your favorite package manager!\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fabilityapps%2Ftauri-template","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fabilityapps%2Ftauri-template","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fabilityapps%2Ftauri-template/lists"}