diff --git a/knowledge base/pgadmin.md b/knowledge base/pgadmin.md new file mode 100644 index 0000000..68545cc --- /dev/null +++ b/knowledge base/pgadmin.md @@ -0,0 +1,66 @@ +# pgAdmin + +Browser-based management tool for [PostgreSQL]. + +1. [TL;DR](#tldr) +1. [Further readings](#further-readings) + 1. [Sources](#sources) + +## TL;DR + +
+ Setup + +```sh +brew install --cask 'pgadmin4' +docker pull 'dpage/pgadmin4' +``` + +
+ + + + + +## Further readings + +- [Website] +- [Codebase] +- [PostgreSQL] + +### Sources + +- [Documentation] + + + + + +[postgresql]: postgresql.md + + + +[codebase]: https://github.com/pgadmin-org/pgadmin4 +[documentation]: https://www.pgadmin.org/docs/ +[website]: https://www.pgadmin.org/ + + diff --git a/knowledge base/postgresql.md b/knowledge base/postgresql.md index 0761579..dcff4fd 100644 --- a/knowledge base/postgresql.md +++ b/knowledge base/postgresql.md @@ -221,6 +221,8 @@ psql -h 'localhost' -p '6543' -U 'postgres' -d 'postgres' -W - [pgxn-manager] - [dverite/postgresql-functions] - [MySQL] +- [pg_flo] +- [pgAdmin] ### Sources @@ -245,6 +247,8 @@ psql -h 'localhost' -p '6543' -U 'postgres' -d 'postgres' -W [mysql]: mysql.md +[pg_flo]: pg_flo.md +[pgadmin]: pgadmin.md [sql]: sql.md