From 7052fd582bbda4324df7c7ac04d5f3f71a74b4e8 Mon Sep 17 00:00:00 2001 From: Laurent Peuch Date: Wed, 10 Jul 2024 21:57:08 +0200 Subject: [PATCH] doc(nix): the database is named aleph for the user aleph --- shell.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell.nix b/shell.nix index 9e73e51d8..bd740609c 100644 --- a/shell.nix +++ b/shell.nix @@ -71,7 +71,7 @@ pkgs.mkShell { echo "PostgreSQL started. Data directory is $PGDATA, Socket directory is $PG_SOCKET_DIR" | sed 's/./=/g' echo "PostgreSQL started. Data directory is $PGDATA, Socket directory is $PG_SOCKET_DIR" echo "Redis started. Data directory is $REDIS_DATA_DIR" - echo "Use 'psql -h $PG_SOCKET_DIR -p $PG_PORT' to connect to the database." + echo "Use 'psql -h $PG_SOCKET_DIR -p $PG_PORT -U aleph aleph' to connect to the database." echo "Use 'redis-cli -p 6379' to connect to the Redis server." echo "To stop PostgreSQL: 'pg_ctl -D $PGDATA -o "-p $PG_PORT" stop'" echo "To manually stop Redis: 'redis-cli -p 6379 shutdown'"