Blast-Radius Aware AI Code Review for Business-Critical Systems
LiveReview LiveReview Explore LiveReview
How to install Osmantic/ODS. Official installation instructions. Project installation guide. Framework or library installation. Build installation instructions. How to setup and install from GitHub. Installation steps and setup instructions. Official docs and installation instructions GitHub.

Osmantic/ODS Installation Guide

How to install Osmantic/ODS. Official project installation instructions and setup guide.

Automated Install (Recommended)

Quick installation instructions for Osmantic/ODS. This is the fastest way to complete project installation and setup.

Install via curl

curl -fsSL https://hexmos.com/ipm-install | bash && 
ipm i Osmantic/ODS
or

Install via npx

npx @hexmos/ipm i Osmantic/ODS

Prerequisites

Docker

runtime

Version: must be installed and running

PowerShell

runtime

Version: for Windows installation

git

runtime

Version: for manual installation

Manual Installation Methods

Manual installation instructions. How to install from GitHub source.

Linux or macOS (curl)

curl -fsSL https://install.osmantic.com/ods.sh | bash

Windows (PowerShell)

$ProgressPreference = "SilentlyContinue"

$odsSrc = Join-Path $env:TEMP ("ods-install-" + [guid]::NewGuid().ToString("N"))

$odsZip = Join-Path $odsSrc "ods-main.zip"

New-Item -ItemType Directory -Path $odsSrc | Out-Null

Invoke-WebRequest "https://github.com/Osmantic/ODS/archive/refs/heads/main.zip" -OutFile $odsZip

Expand-Archive -LiteralPath $odsZip -DestinationPath $odsSrc -Force

cd (Get-ChildItem -LiteralPath $odsSrc -Directory | Select-Object -First 1).FullName

Set-ExecutionPolicy -Scope Process -ExecutionPolicy Bypass

.\install.ps1

Linux or macOS (Manual Git Clone)

git clone https://github.com/Osmantic/ODS.git

cd ODS/ods

./install.sh

Windows (Manual Git Clone)

git clone https://github.com/Osmantic/ODS.git

cd ODS/ods

.\install.ps1

macOS (Apple Silicon - Manual Git Clone)

git clone https://github.com/Osmantic/ODS.git

cd ODS/ods

./install.sh

Post Installation Steps

  • Open http://localhost:3000 in your browser.