Installation
NSchema ships as a .NET global tool named nschema.
Prerequisites
Section titled “Prerequisites”- .NET SDK 10.0 or later. The tool targets
net10.0. Check withdotnet --version; install from dotnet.microsoft.com if needed. - A PostgreSQL database to manage (for the commands that touch one). Planning can also run offline against a state store, with no database connection.
Install
Section titled “Install”dotnet tool install --global nschemaThis installs the nschema command onto your PATH. Verify it:
nschema --versionUpdate
Section titled “Update”dotnet tool update --global nschemaUninstall
Section titled “Uninstall”dotnet tool uninstall --global nschemaShell completion
Section titled “Shell completion”NSchema can emit a completion script for your shell — see the
completion command.
Next steps
Section titled “Next steps”With the tool installed, head to the Quickstart to scaffold a project and apply your first schema.