How Nyas database works
Nyas gives each project an isolated PostgreSQL
database with a standard connection string. Your
app, ORM, migration tool, or coding agent connects
through DATABASE_URL and speaks normal
Postgres.
The platform handles provisioning, connection routing, pooling options, limits, and backups around that database so the development loop stays fast while the interface remains portable.
- Use regular SQL, extensions, drivers, and ORM tooling.
- Start with an isolated sandbox and upgrade when it grows.
-
Export with standard Postgres tools like
pg_dump.