diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2022-10-27 12:38:02 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2022-10-27 12:38:02 -0700 |
commit | 3b1b394e1651fdc62dcd026a9453017c11e20a2c (patch) | |
tree | 2fb5a328a466472e952d0659a7538019866878ee /adenosine-tauri-gui/tauri.conf.json | |
parent | b169d130ea80f6954b77a2921c50e8587eadd1ae (diff) | |
download | adenosine-3b1b394e1651fdc62dcd026a9453017c11e20a2c.tar.gz adenosine-3b1b394e1651fdc62dcd026a9453017c11e20a2c.zip |
start skeleton of adenosine-tauri-gui crate
Diffstat (limited to 'adenosine-tauri-gui/tauri.conf.json')
-rw-r--r-- | adenosine-tauri-gui/tauri.conf.json | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/adenosine-tauri-gui/tauri.conf.json b/adenosine-tauri-gui/tauri.conf.json new file mode 100644 index 0000000..b9ba4df --- /dev/null +++ b/adenosine-tauri-gui/tauri.conf.json @@ -0,0 +1,65 @@ +{ + "build": { + "beforeBuildCommand": "", + "beforeDevCommand": "", + "devPath": "web/", + "distDir": "web/" + }, + "package": { + "productName": "adenosine-tauri-gui", + "version": "0.1.0" + }, + "tauri": { + "allowlist": { + "all": true + }, + "bundle": { + "active": true, + "category": "DeveloperTool", + "copyright": "", + "deb": { + "depends": [] + }, + "externalBin": [], + "icon": [ + "icons/32x32.png", + "icons/128x128.png", + "icons/128x128@2x.png", + "icons/icon.icns", + "icons/icon.ico" + ], + "identifier": "com.tauri.dev", + "longDescription": "", + "macOS": { + "entitlements": null, + "exceptionDomain": "", + "frameworks": [], + "providerShortName": null, + "signingIdentity": null + }, + "resources": [], + "shortDescription": "", + "targets": "all", + "windows": { + "certificateThumbprint": null, + "digestAlgorithm": "sha256", + "timestampUrl": "" + } + }, + "security": { + "csp": null + }, + "updater": { + "active": false + }, + "windows": [ + { + "fullscreen": false, + "height": 600, + "resizable": true, + "title": "adenosine", + "width": 800 + } + ] + } +} |