mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-12-19 00:21:32 +03:00
8b166e9bf8
Co-authored-by: Fabian-Lars <fabianlars@fabianlars.de> Co-authored-by: Lucas Nogueira <lucas@tauri.studio>
4.4 KiB
4.4 KiB
Tauri's Environment Variables
This is a documentation of all environment variables used by tauri core crates and tauri CLI.
Tauri CLI
These environment variables are inputs to the CLI which may have an equivalent CLI flag.
if both environment variable and CLI flag are used, the CLI flag will have priority.
CI
— If set, the CLI will run in CI mode and won't require any user interaction.TAURI_CLI_CONFIG_DEPTH
— Number of levels to traverse and find tauri configuration file.TAURI_CLI_PORT
— Port to use for the CLI built-in dev server.TAURI_CLI_WATCHER_IGNORE_FILENAME
— Name of a.gitignore
-style file to control which files should be watched by the CLI indev
command. The CLI will look for this file name in each directory.TAURI_CLI_NO_DEV_SERVER_WAIT
— Skip waiting for the frontend dev server to start before building the tauri application.TAURI_LINUX_AYATANA_APPINDICATOR
— Set this var totrue
or1
to force usage oflibayatana-appindicator
for system tray on Linux.TAURI_BUNDLER_WIX_FIPS_COMPLIANT
— Specify the bundler's WiXFipsCompliant
option.TAURI_SIGNING_PRIVATE_KEY
— Private key used to sign your app bundles, can be either a string or a path to the file.TAURI_SIGNING_PRIVATE_KEY_PASSWORD
— The signing private key password, seeTAURI_SIGNING_PRIVATE_KEY
.APPLE_CERTIFICATE
— Base64 encoded of the.p12
certificate for code signing. To get this value, runopenssl base64 -in MyCertificate.p12 -out MyCertificate-base64.txt
.APPLE_CERTIFICATE_PASSWORD
— The password you used to export the certificate.APPLE_ID
— The Apple ID used to notarize the application. If this environment variable is provided,APPLE_PASSWORD
must also be set. Alternatively,APPLE_API_KEY
andAPPLE_API_ISSUER
can be used to authenticate.APPLE_PASSWORD
— The Apple password used to authenticate for application notarization. Required ifAPPLE_ID
is specified. An app-specific password can be used. Alternatively to entering the password in plaintext, it may also be specified using a '@keychain:' or '@env:' prefix followed by a keychain password item name or environment variable name.APPLE_API_KEY
— Alternative toAPPLE_ID
andAPPLE_PASSWORD
for notarization authentication using JWT.- This option will search the following directories in sequence for a private key file with the name of
AuthKey\_<api_key>.p8
:./private_keys
,~/private_keys
,~/.private_keys
, and~/.appstoreconnect/private_keys
. Additionally, you can set environment variableAPI_PRIVATE_KEYS_DIR
to specify the directory where your AuthKey file is located. - See creating API keys for more information.
- This option will search the following directories in sequence for a private key file with the name of
API_PRIVATE_KEYS_DIR
— Specify the directory where your AuthKey file is located. SeeAPPLE_API_KEY
.APPLE_API_ISSUER
— Issuer ID. Required ifAPPLE_API_KEY
is specified.APPLE_SIGNING_IDENTITY
— The identity used to code sign. Overwritestauri.conf.json > tauri > bundle > macOS > signingIdentity
.APPLE_PROVIDER_SHORT_NAME
— If your Apple ID is connected to multiple teams, you have to specify the provider short name of the team you want to use to notarize your app. Overwritestauri.conf.json > tauri > bundle > macOS > providerShortName
.APPLE_DEVELOPMENT_TEAM
— TODOTAURI_WEBVIEW_AUTOMATION
— Enables webview automation (Linux Only).TAURI_ANDROID_PROJECT_PATH
— Path of the tauri android project, usually will be<project>/src-tauri/gen/android
.TAURI_IOS_PROJECT_PATH
— Path of the tauri iOS project, usually will be<project>/src-tauri/gen/ios
.
Tauri CLI Hook Commands
These environment variables are set for each hook command (beforeDevCommand
, beforeBuildCommand
, ...etc) which could be useful to conditionally build your frontend or execute a specific action.
TAURI_ARCH
— Target arch,x86_64
,aarch64
...etc.TAURI_PLATFORM
— Target platform,windows
,macos
,linux
...etc.TAURI_FAMILY
— Target platform familyunix
orwindows
.TAURI_PLATFORM_TYPE
— Target platform typeLinux
,Windows_NT
orDarwin
TAURI_PLATFORM_VERSION
— Build platform versionTAURI_DEBUG
—true
fordev
command,false
forbuild
command.TAURI_TARGET_TRIPLE
— Target triple the CLI is building.