Documentation for macOS
#Installing PostgreSQL via Herd Pro
PostgreSQL is a powerful, open-source object-relational database system that is known for its reliability and robustness. Laravel Herd Pro extends PostgreSQL by providing a number of popular extensions:
- PostGIS - adds support for geographic objects to the PostgreSQL database, making it easy to store and query spatial data.
- pgrouting - adds routing functionality to PostgreSQL, allowing you to calculate the shortest path between two points.
- pgvector - a vector similarity search extension for PostgreSQL, which allows you to search for (among other things) OpenAI embeddings in your database.
#Configuration
Herd uses a common default configuration for your PostgreSQL instance that works seamlessly for most setups, and you can change the port of the service to run it in parallel to existing installations on your machine.
Enabling the autostart option automatically starts a service instance when you start Herd.
If you want to modify the settings of the database, you can right-click the service in the settings and open its data directory. In this data directory, there is a postgresql.conf
that this specific PostgreSQL instance loads on startup.
Make sure to restart the service if you make changes to this configuration.
#Creating databases
Before you can connect your application to the database service, you need an actual database within the instance of the service. Herd provides a convenient way to open TablePlus or AdminerEvo in case that you don't use TablePlus.
When clicking on the related button for these tools on the right side of the service details, Herd opens a connection to the database in your preferred tool and automatically logs you in.
#Connecting from your Laravel application
To connect it within your application, you can use the credentials that are listed next to the running service in the settings, or you can use the ones below.
DB_CONNECTION=pgsqlDB_HOST=127.0.0.1DB_PORT=5432DB_DATABASE=laravel # set this to your project databaseDB_USERNAME=rootDB_PASSWORD=
#Database service migrations
Whether you set up a newer version of PostgreSQL or migrate from existing instances on your machine, the most comfortable way is to use a database client like TablePlus to export and import the database tables.
#Versions
Herd Pro allows you to install the following versions directly from the services tab of the settings. New versions are available regularly.
Service | Version |
---|---|
PostgreSQL | 14.x |
PostgreSQL | 15.x |
PostgreSQL | 16.x |