mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-12-03 02:09:50 +03:00
8de308d1bf
* feat(core): implement new config structure RFC#5f3e82a6b0c/texts/0005-tauri-config-restructure.md
* fixes * remove tauri-plugin copy [skip ci] * move platform specific configs * fix build * fix cli * doctests * change files * read updater plugin config on CLI * doctests * remove env var from docs * fix getting pubkey * add migrations * clippy * update change file [skip ci] * rename frontendDist to prodFrontend? * Revert "rename frontendDist to prodFrontend?" This reverts commitef7394f085
. * fix all_features check * fix field name * single license getter on bundler * readd msiexec_args * remove unused fixture * update template * Update .changes/tauri-bundle-settings-rfc-5.md * Update .changes/config-restructure-rfc-5.md * lint bundler, fix change file * rename AppUrl to FrontendDist, add explicit variants for docs * fix build * lint --------- Co-authored-by: Lucas Nogueira <lucas@tauri.studio> Co-authored-by: Lucas Fernandes Nogueira <lucas@tauri.app>
962 B
962 B
Resource example
This example demonstrates the Tauri bundle resources functionality. The example adds src-tauri/assets/index.js
as a resource (defined on tauri.conf.json > bundle > resources
) and executes it using Node.js
, locating the JavaScript file using the tauri::App::path_resolver
APIs.
Running the example
- Compile Tauri go to root of the Tauri repo and run: Linux / Mac:
# choose to install node cli (1)
bash .scripts/setup.sh
Windows:
./.scripts/setup.ps1
- Install dependencies (Run inside of this folder
examples/resources/
)
# with yarn
$ yarn
# with npm
$ npm install
$ yarn tauri
$ yarn package
- Run the app in development mode (Run inside of this folder
examples/resources/
)
# with yarn
$ yarn tauri dev
# with npm
$ npm run tauri dev
- Build an run the release app (Run inside of this folder
examples/resources/
)
$ yarn tauri build
$ ./src-tauri/target/release/app