DiceDB Playground is an interactive platform designed to let users experiment with DiceDB commands in a live environment. Allows users to search and play with various DiceDB commands in real-time. This repository hosts backend service implementation of the Playground.
To run playground-mono for local development or running from source, you will need
- Golang
- Any of the below supported platform environment:
- Linux based environment
- OSX (Darwin) based environment
- WSL under Windows
- Install GoLangCI
sudo su
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b /bin v1.60.1
git clone https://github.com/dicedb/playground-mono
cd playground-mono
cp .env.sample .env
The default values of .env files works just fine, but feel free to tweak them as per your environment.
Playground-mono requires two running instances of DiceDB one on port 7379
and
other on port 7380
.
To setup and run DiceDB locally, please refer to the README.md file of DiceDB/dice.
If you do not want to run two instances, due to hardware limitations, you can run one and change the .env file and update the appropriate values
Once you have DiceDB running, run the following command and that will start
the playground-mono server on port 8080
.
make run
bash setup.sh
The code contribution guidelines are published at CONTRIBUTING.md; please read them before you start making any changes. This would allow us to have a consistent standard of coding practices and developer experience.
Contributors can join the Discord Server for quick collaboration.