Installation
RDBMS Playground is a single self-contained program. There is nothing to configure and no separate database to install — everything it needs is built in.
Prebuilt binaries
Section titled “Prebuilt binaries”Download the binary for your platform, make it executable if needed, and
put it somewhere on your PATH.
Package managers
Section titled “Package managers”Once published, the playground will be installable through common package managers:
# macOS / Linux (Homebrew)brew install rdbms-playground
# Windows (Scoop)scoop install rdbms-playgroundRun it
Section titled “Run it”Start the playground with no arguments and it opens a fresh, automatically named temporary project so you can start experimenting immediately:
rdbms-playgroundTo open an existing project, pass its path:
rdbms-playground path/to/projectUseful options (run rdbms-playground --help for the full list):
| Option | What it does |
|---|---|
--resume | Reopen the most recently used project. |
--data-dir <PATH> | Use a different location for stored projects. |
--theme <light|dark> | Force a theme instead of auto-detecting. |
--mode <simple|advanced> | Start in a specific input mode. |
Next: create your first project.