From 7106dcc745151ada8747f9225391361e3110426c Mon Sep 17 00:00:00 2001 From: biondizzle Date: Sat, 7 Mar 2026 17:34:38 -0500 Subject: [PATCH] fix quick start instructions --- README.md | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 43e9160..9435b3d 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,21 @@ It speaks the DynamoDB wire protocol, so any existing AWS SDK client works again - ✅ **Persistent Storage**: RocksDB-backed with full ACID guarantees - ✅ **Concurrency**: Table-level RW locks for safe concurrent access -## Quick Start +## Quick Start - Easy + +## Option A +``` +# The compose file pulls from a container registry +docker compose up +``` + +## Option B +``` +# Builds the local files in a container and then runs the container +docker run -it --rm $(docker build -q .) +``` + +## Quick Start - Local ### Prerequisites @@ -47,7 +61,7 @@ brew install rocksdb odin ```bash sudo apt install librocksdb-dev libsnappy-dev liblz4-dev libzstd-dev libbz2-dev -# Install Odin from https://odin-lang.org/docs/install/ +# Just snag this (https://github.com/odin-lang/Odin/releases/download/dev-2026-02/odin-linux-amd64-dev-2026-02.tar.gz) and symlink the odin binary in the folder to your /bin ``` ### Build & Run