Playground manager for oomstore.
```help $ oomplay --help oomplay 0.3.2 Playground manager for oomstore
USAGE:
oomplay
OPTIONS: -h, --help Print help information -V, --version Print version information
SUBCOMMANDS: init Initialize playgrounds stop Stop playgrounds completion Output shell completion code ```
$ oomplay init redis postgres
[*] 🎮 Initializing oomplay-redis ...
[*] 📡 Pinging database ...
[*] 📦 Creating container ...
[*] 🚀 Starting container ...
[*] 📡 Pinging database ...
[*] 💫 Initializing database ...
[*] 🟢 Store is ready.
[*] 🎮 Initializing oomplay-postgres ...
[*] 📡 Pinging database ...
[*] 📦 Creating container ...
[*] 🚀 Starting container ...
[*] 📡 Pinging database ...
[*] 📡 Pinging database ...
[*] 📡 Pinging database ...
[*] 💫 Initializing database ...
[*] 🟢 Store is ready.
$ oomplay stop redis postgres
[*] 🔌 Stopping oomplay-redis ...
[*] 🔴 Stopped.
[*] 🔌 Stopping oomplay-postgres ...
[*] 🔴 Stopped.
You can install oomplay
with Homebrew:
brew tap oom-ai/oomplay
brew install oomplay
Pre-built versions of oomplay
for various architectures are available at Github release page.
oomplay
is also published on crates.io. If you have Rust toolchains (nightly) installed you can use cargo
to install it from source:
cargo install --locked oomplay
If you want the latest version, clone this repository and run cargo install --path .
.