Installation
Requirements
Section titled “Requirements”- Go 1.26 or newer.
- For server operation: PostgreSQL or YugabyteDB. For desktop/demo and tests, SQLite is enough (embedded, no service required).
Add the module
Section titled “Add the module”import orm "gitlab.techeve.de/techeve/orm-plus-plus"ORM++ lives on the internal GitLab server. For private fetches:
export GOPRIVATE=gitlab.techeve.dego get gitlab.techeve.de/techeve/orm-plus-plus@latestDrivers
Section titled “Drivers”The drivers are part of the module — no separate import needed:
orm.SQLite(path string) // embedded; demo/desktop/tests. WAL mode.orm.Postgres(dsn string) // server, on-prem (pgx pool)orm.Yugabyte(dsn string) // distributed; DSN should contain regionally near endpointsContinue to the Quickstart.