Skip to content

Playground for SpiceDB, the open source, Google Zanzibar-inspired permissions database to enable fine-grained access control for customer applications

License

Notifications You must be signed in to change notification settings

authzed/playground

Repository files navigation

spicedb logo spicedb Logo

Playground

The SpiceDB Playground is an interactive app for building a SpiceDB schema, interacting with test relationships, and quickly iterating with test assertions.

Whether you're just getting started learning SpiceDB concepts or need to develop a new permissions system schema for your application, the SpiceDB playground has functionality to help.

SpiceDB Playground features include:

  • Rich text editor with syntax highlighting and tooltips
  • Visual relationship editor with support for defining caveat context data
  • Developer system that detects and presents schema and data errors
  • Real-time check requests against a full SpiceDB instance running client side via WASM
  • Fully functional zed CLI instance running client side via WASM
  • Schema and relationship graph visualization
  • Import and export schema and workspace data as a YAML file

What is SpiceDB?

SpiceDB is a graph database purpose-built for storing and evaluating access control data.

As of 2021, broken access control became the #1 threat to the web. With SpiceDB, developers finally have the solution to stopping this threat the same way as the hyperscalers.

Learn more about SpiceDB

Getting Started

Deploying

Docker

Run the latest Docker container

docker run -it -p 3000:3000 ghcr.io/authzed/spicedb-playground:latest

Connect to the running container.

http://<container>:3000

Vercel

Deploy an instance hosted on Vercel

Deploy with Vercel

or using the Vercel CLI

NODE_OPTIONS=--openssl-legacy-provider vercel build
vercel deploy --prebuilt

ℹ️ Git Large File Storage (LFS) must be enabled in your Vercel project settings.

NodeJS

The build directory in the project root directory after running yarn build will contain an optimized production React application that can be served using your preferred NodeJS hosting method.

ℹ️ Node v18.x is required.

For example:

NODE_OPTIONS=--openssl-legacy-provider yarn global install serve
cd build
serve

Installing dependencies

Setup git submodules: git submodule update --init --recursive

Run yarn install in the root project directory.

Updating wasm dependencies

The project contains prebuilt WASM files for versions of both SpiceDB and zed. To update the versions, edit the wasm-config.json file with the desired tag/commit hash and then run from the project root:

yarn run update:spicedb

yarn run update:zed

ℹ️ jq is required and must be installed.

Developing your own schema

You can try both SpiceDB and zed entirely in your browser on a SpiceDB Playground deployment thanks to the power of WebAssembly.

If you don't want to start with the examples loadable from a Playground, you can follow a guide for developing a schema or review the the schema language design documentation.

Watch the SpiceDB primer video to get started with schema development:

SpiceDB Primer YouTube Thumbnail

Contribute

CONTRIBUTING.md documents communication, contribution flow, legal requirements, and common tasks when contributing to the project.

You can find issues by priority: Urgent, High, Medium, Low, Maybe. There are also good first issues.

Our documentation website is also open source if you'd like to clarify anything you find confusing.

Joining the SpiceDB Community

SpiceDB is a community project where everyone is invited to participate and feel welcomed. While the project has a technical goal, participation is not restricted to those with code contributions. Join our Community Discord to ask questions and meet other users.