Joey
07/07/2022, 2:31 AMJoey
07/07/2022, 2:31 AMHenko
07/07/2022, 2:39 AMJoey
07/07/2022, 3:19 PMRavinder Cheema
07/07/2022, 9:59 PMwilliamdclt
07/08/2022, 9:42 AMguillermotimon
07/08/2022, 12:31 PMspicedb serve --grpc-preshared-key "my_key"
and when I run zed context set blog localhost:50051 my_key
I get the following question Enter passphrase to unlock /home/guillermo/.zed/keyring.jwt:
guillermotimon
07/08/2022, 12:31 PMguillermotimon
07/08/2022, 2:52 PMJake
07/08/2022, 2:53 PMzed
are stored in your operating systems's secure keyringJake
07/08/2022, 2:53 PMJake
07/08/2022, 2:53 PMguillermotimon
07/08/2022, 2:56 PM~/.zed/keyring.jwt Β» cat zed\ secrets
but I haven't set any passphrase when installing zedguillermotimon
07/08/2022, 2:56 PMJake
07/08/2022, 2:58 PMJake
07/08/2022, 3:01 PMguillermotimon
07/08/2022, 3:01 PMguillermotimon
07/08/2022, 3:07 PMJoey
07/08/2022, 3:12 PM--insecure
on the contextJoey
07/08/2022, 3:12 PMguillermotimon
07/08/2022, 3:29 PMjzelinskie
07/08/2022, 3:30 PMguillermotimon
07/08/2022, 3:30 PMMAI-Evan
07/08/2022, 9:26 PMJoey
07/08/2022, 9:29 PMMAI-Evan
07/08/2022, 9:37 PM// Write 1
definition core/user {}
// Write 2
definition myservice/thing {}
// Results in
definition core/user {}
definition myservice/thing {}
// Write 3
definition myservice/thing {
relation owner: core/user
}
definition myservice/specificthing {
relation thing: myservice/thing
}
// Results in
definition core/user {}
definition myservice/thing {
relation owner: core/user
}
definition myservice/specificthing {
relation thing: myservice/thing
}
So the writes are scoped to a prefix and won't wipe out other prefixes.Joey
07/08/2022, 9:38 PMMAI-Evan
07/08/2022, 9:43 PM