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/ODSor
Install via npx
npx @hexmos/ipm i Osmantic/ODSPrerequisites
Docker
runtimeVersion: must be installed and running
PowerShell
runtimeVersion: for Windows installation
git
runtimeVersion: 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 | bashWindows (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.ps1Linux or macOS (Manual Git Clone)
git clone https://github.com/Osmantic/ODS.git
cd ODS/ods
./install.shWindows (Manual Git Clone)
git clone https://github.com/Osmantic/ODS.git
cd ODS/ods
.\install.ps1macOS (Apple Silicon - Manual Git Clone)
git clone https://github.com/Osmantic/ODS.git
cd ODS/ods
./install.shPost Installation Steps
- Open http://localhost:3000 in your browser.
