Reputation: 1223
I'm trying to setup fauna dev locally.
After installing the docker image, and running a persistent instance, I get this information showing in the terminal
Admin endpoint: 127.0.0.1:8444
API endpoint: 0.0.0.0:8443
API(plain) endpoint: 0.0.0.0:8445
Replica name: NoDC
FaunaDB is ready.
Pointing the browser to 127.0.0.1:8444 doesn't show a page
How do I access the admin dashboard locally? Is the only way to navigate the database is through cli?
Upvotes: 1
Views: 297
Reputation: 4531
There is no admin Dashboard included in the Fauna Dev image.
The Admin endpoint
that you listed is for internal tooling.
Typically, developers interact with Fauna Dev by using fauna-shell
, or writing client applications that connect to the API endpoint
.
Upvotes: 3