From dd469197bea98418fb5d971a1724ac5c7daf0bf6 Mon Sep 17 00:00:00 2001 From: Klaus Wagner Date: Wed, 20 Nov 2019 11:30:14 +0100 Subject: [PATCH] Fix small typo in export DATABASE_URL --- developer_setup.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/developer_setup.md b/developer_setup.md index 505c9bd9..89ccdf48 100644 --- a/developer_setup.md +++ b/developer_setup.md @@ -163,7 +163,7 @@ CentOS 7 requires the `rh-postgresql10` SCL environment in order to compile the If you've run PostgreSQL in a container, be sure to export the `DATABASE_URL` variable to connect to the container over TCP instead of a UNIX file socket. ```bash -export DATABASE_URL='posgresql://localhost:5432' # optional, only necessary if PostgreSQL is running in a container +export DATABASE_URL='postgresql://localhost:5432' # optional, only necessary if PostgreSQL is running in a container ``` ---