Documentación/Primeros pasos

Instalación

Vía Docker Compose

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

Vía brew (sin Docker)

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

Vía el binario

Descarga una release de GitHub Releases, colócala en /usr/local/bin y arranca la unit de systemd. Instrucciones completas en Production deployment.