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 auth 560 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 "security": { 16 "csp": null 17 } 18 }, 19 "bundle": { 20 "active": true, 21 "targets": "all", 22 "icon": ["icons/32x32.png", "icons/128x128.png", "icons/128x128@2x.png", "icons/icon.icns", "icons/icon.ico"] 23 } 24}