We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8d681fa commit 507bf74Copy full SHA for 507bf74
var/www/repo/bash.sh
@@ -14,3 +14,19 @@ scp myapp-2.0.0.aura repo@auraos.org:/var/www/repo/stable/
14
15
# Update repo index
16
ssh repo@auraos.org "apm-repo"
17
+
18
+# Generate Aura signing key
19
+gpg --quick-gen-key "AuraOS Repo <repo@auraos.org>" rsa4096 sign 1y
20
21
+# Export public key for clients
22
+gpg --armor --export "AuraOS Repo" > /var/www/repo/keys/aura-public.gpg
23
24
+# Import repo public key (once)
25
+gpg --import aura-public.gpg
26
27
+# Install package
28
+apm install hello-world
29
30
+# apm verifies:
31
+# - SHA256 hash from index.json
32
+# - GPG signature on package + index
0 commit comments