One-click backups for AT Protocol
1{
2 "$schema": "https://schema.tauri.app/config/2",
3 "productName": "ATBackup",
4 "version": "0.1.4",
5 "identifier": "ATBackup",
6 "build": {
7 "beforeDevCommand": "bun run dev",
8 "devUrl": "http://localhost:1420",
9 "beforeBuildCommand": "bun run build",
10 "frontendDist": "../dist"
11 },
12 "app": {
13 "windows": [
14 {
15 "title": "ATBackup",
16 "width": 800,
17 "height": 600,
18 "decorations": false,
19 "label": "main",
20 "devtools": true
21 }
22 ],
23 "security": {
24 "csp": null
25 }
26 },
27 "bundle": {
28 "active": true,
29 "targets": [
30 "deb",
31 "rpm",
32 "msi",
33 "dmg"
34 ],
35 "linux": {
36 "rpm": {
37 "compression": {
38 "type": "zstd",
39 "level": 1
40 }
41 }
42 },
43 "icon": [
44 "icons/32x32.png",
45 "icons/128x128.png",
46 "icons/128x128@2x.png",
47 "icons/icon.icns",
48 "icons/icon.ico"
49 ],
50 "createUpdaterArtifacts": true,
51 "macOS": {
52 "signingIdentity": "-"
53 }
54 },
55 "plugins": {
56 "deep-link": {
57 "desktop": {
58 "schemes": [
59 "atprotobackups"
60 ]
61 }
62 },
63 "updater": {
64 "pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IDU2Njg2QTE3N0I2NTI0QUEKUldTcUpHVjdGMnBvVnFNWWE4TkdDQlp2eFo2RUZVVmp4b1IxbGdvS3JHOWd1dkRvQm1MdWsvZ1gK",
65 "endpoints": [
66 "https://github.com/Turtlepaw/atproto-backup/releases/latest/download/latest.json"
67 ]
68 }
69 }
70}