Files
fechamento-caixa/src-tauri/tauri.conf.json
T
root a5cff433a6
Build Fechamento de Caixa / build (macos-14, app) (push) Has been cancelled
Build Fechamento de Caixa / build (ubuntu-22.04, deb) (push) Has been cancelled
Build Fechamento de Caixa / build (windows-2022, msi) (push) Has been cancelled
Fechamento de Caixa - Tauri 2 initial commit
- Storage: SQLite local via rusqlite
- Supabase: REST API via reqwest
- Printer: USB ESC/POS for TM-T20
- Frontend: vanilla HTML (form-v9.3 ported)
- Build: GitHub Actions for Linux/Windows/macOS
2026-06-20 13:58:34 +00:00

44 lines
922 B
JSON

{
"$schema": "https://schema.tauri.app/config/2",
"productName": "Fechamento de Caixa",
"identifier": "com.ofrangao.fechamento-caixa",
"version": "1.0.0",
"build": {
"beforeBuildCommand": "",
"beforeDevCommand": "",
"frontendDist": "../src"
},
"app": {
"windows": [
{
"title": "Fechamento de Caixa — O Frangão",
"width": 1100,
"height": 780,
"minWidth": 900,
"minHeight": 650,
"resizable": true,
"fullscreen": false,
"center": true
}
],
"security": {
"csp": null
},
"withGlobalTauri": true
},
"bundle": {
"active": true,
"targets": "all",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
],
"windows": {
"webviewInstallMode": { "type": "embedBootstrapper" }
}
}
}