mirror of
https://github.com/tauri-apps/tauri.git
synced 2026-02-06 13:17:02 +00:00
* enhance: include permissions in default permission description * Only include in schema * Remove 'which includes` to tauri's build script * Also bump utils * Clippy My local clippy didn't report this, weird * Use `which enables all commands` for default permissions that enables everything * Extract description into a variable * Generate permissions with or without description * Tweak the docs and generate 'which includes' * Simplify to just `includes` * Docs change change file * Put the change in minor * Update .changes/include-permissions-in-schema.md Co-authored-by: Amr Bashir <amr.bashir2015@gmail.com> * Remove unused change file --------- Co-authored-by: Amr Bashir <amr.bashir2015@gmail.com> |
||
|---|---|---|
| .. | ||
| dist | ||
| isolation-dist | ||
| public | ||
| src | ||
| src-tauri | ||
| .gitignore | ||
| .setup-cross.sh | ||
| .taurignore | ||
| index.html | ||
| jsconfig.json | ||
| package.json | ||
| README.md | ||
| screenshot.png | ||
| svelte.config.js | ||
| unocss.config.js | ||
| vite.config.js | ||
API example
This example demonstrates Tauri's API capabilities using the @tauri-apps/api package. It's used as the main validation app, serving as the testbed of our development process.
In the future, this app will be used on Tauri's integration tests.
Running the example
- Compile Tauri go to root of the Tauri repo and run:
pnpm i
pnpm build:debug
- Run the app in development mode (Run inside of this folder
examples/api/)
$ pnpm tauri dev
- Build an run the release app (Run inside of this folder
examples/api/)
$ pnpm tauri build
$ ./src-tauri/target/release/app
