Provided that I run SpiceDB with
# spicedb
s
Provided that I run SpiceDB with postgres like this: @spicedb serve --grpc-preshared-key "f3bc775b27f563d833a8a21f7dfa46d7140079c5715a4df2e08393a761661e27" \ --datastore-engine $(DB_DRIVER) \ --datastore-conn-uri "$(DB_DRIVER)://$(DB_USER):$(DB_PASSWORD)@$(DB_HOST):$(DB_PORT)/$(DB_NAME)$(DB_PARAMS)" How do I connect to it using Zed? Can't seem to find anything on it in the docs, they just describe using a token which I'm not aware that I have anywhere
v
you provide the endpoint of your spicedb to zed, and the token is the
grpc-preshared-key
s
Yup, that was it. Makes total sense actually! Thanks a bunch, managed to get it all running now. This is some seriously cool tech!
4 Views