Newer
Older
TelosDB / src-tauri / tauri.conf.json
@楽曲作りまくりおじさん 楽曲作りまくりおじさん 7 days ago 857 bytes feat: integrate llama-server sidecar with Gemma 3 300M support
{
  "$schema": "https://schema.tauri.app/config/2",
  "productName": "sqlitevector",
  "version": "0.1.0",
  "identifier": "com.sqlitevector.app",
  "build": {
    "frontendDist": "../src/frontend",
    "beforeDevCommand": "",
    "beforeBuildCommand": ""
  },
  "app": {
    "windows": [
      {
        "title": "SQLite Vector",
        "width": 800,
        "height": 600,
        "resizable": true,
        "fullscreen": false,
        "visible": true
      }
    ],
    "withGlobalTauri": true,
    "security": {
      "csp": null
    }
  },
  "bundle": {
    "active": true,
    "targets": "all",
    "externalBin": [
      "bin/llama-server"
    ],
    "resources": [
      "resources/*"
    ],
    "icon": [
      "icons/32x32.png",
      "icons/128x128.png",
      "icons/128x128@2x.png",
      "icons/icon.icns",
      "icons/icon.ico"
    ]
  }
}