Documentation/Getting started

Installation

Via Docker Compose

git clone https://github.com/example/unimoni
cd unimoni
make up   # Postgres + TSDB
make api  # API server
make web  # Next.js cabinet

Via brew (without Docker)

brew install postgresql@16 tsdb
brew services start postgresql@16
brew services start tsdb
make api
make web

Via binary

Download a release from GitHub Releases, drop it in /usr/local/bin, start the systemd unit. Full instructions in Production deployment.