Self-hosted, federated location sharing app and server that prioritizes user privacy and security
end-to-end-encryption location-sharing privacy self-hosted federated
at main 660 B view raw
1{ 2 "$schema": "https://schema.tauri.app/config/2", 3 "productName": "privacypin", 4 "version": "0.1.0", 5 "identifier": "dev.azom.privacypin", 6 "build": { 7 "beforeDevCommand": "bun run dev", 8 "devUrl": "http://localhost:1420", 9 "beforeBuildCommand": "bun run build", 10 "frontendDist": "../dist" 11 }, 12 "app": { 13 "withGlobalTauri": true, 14 "windows": [ 15 { 16 "title": "privacypin", 17 "width": 412, 18 "height": 915, 19 "resizable": false 20 } 21 ], 22 "security": { 23 "csp": null 24 } 25 }, 26 "bundle": { 27 "active": true, 28 "targets": "all", 29 "icon": ["icons/32x32.png", "icons/128x128.png", "icons/128x128@2x.png", "icons/icon.icns", "icons/icon.ico"] 30 } 31}