services-flake/doc/pgadmin.md

19 lines
352 B
Markdown
Raw Normal View History

2024-02-29 15:40:22 +03:00
# pgAdmin
[pgAdmin] is a feature rich Open Source administration and development platform for #[[postgresql]].
2024-02-29 15:40:22 +03:00
[pgAdmin]: https://www.pgadmin.org/
## Getting Started
```nix
# In `perSystem.process-compose.<name>`
{
services.pgadmin."pgad1" = {
enable = true;
initialEmail = "email@gmail.com";
initialPassword = "password";
};
}
```