Skip to content

Latest commit

 

History

History
66 lines (46 loc) · 854 Bytes

File metadata and controls

66 lines (46 loc) · 854 Bytes
title Development setup
sidebar
order
10

Prerequisites

  • Mise
  • Just
  • Docker
  • certutil (part of NSS tools). Required for mkcert to install the CA into system trust stores

Installing certutil

macOS:

brew install nss

Debian/Ubuntu:

apt install libnss3-tools

Fedora/RHEL:

dnf install nss-tools

Arch:

pacman -S nss

MacOS

On macOS, the default shared memory limits are too low for PostgreSQL. For embedded-postgres, create/edit /etc/sysctl.conf:

kern.sysv.shmall=65536
kern.sysv.shmmax=16777216

Installation

mise trust
mise install

Run cluster

just cluster-start
just dev

Console Frontend

See console-frontend/README.md.