From 61f16e52243154d72463abea85d41c2eafadd273 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cebrail=20Y=C4=B1lmaz?= Date: Sun, 20 Feb 2022 16:21:06 +0300 Subject: [PATCH] Fix incorrect createdb instruction in documentation (#3606) Co-authored-by: Bruno Alla --- docs/developing-locally.rst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/developing-locally.rst b/docs/developing-locally.rst index a9a54a03..3b86ff44 100644 --- a/docs/developing-locally.rst +++ b/docs/developing-locally.rst @@ -42,7 +42,8 @@ First things first. #. Create a new PostgreSQL database using createdb_: :: - $ createdb -U postgres --password + $ createdb --username=postgres + ``project_slug`` is what you have entered as the project_slug at the setup stage. .. note::