From 1f4e79f856a8176c29177b6b074d7b0b493795fa Mon Sep 17 00:00:00 2001 From: Sourabh Jain Date: Tue, 25 Mar 2025 13:00:28 +0530 Subject: [PATCH] fix comands --- src/Explorer/Tabs/CloudShellTab/Commands.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Explorer/Tabs/CloudShellTab/Commands.tsx b/src/Explorer/Tabs/CloudShellTab/Commands.tsx index 85ca83767..3951c6e87 100644 --- a/src/Explorer/Tabs/CloudShellTab/Commands.tsx +++ b/src/Explorer/Tabs/CloudShellTab/Commands.tsx @@ -67,7 +67,8 @@ export const commands = (terminalKind: TerminalKind, config?: CommandConfig): st // 10. Source .bashrc to update PATH (even if psql was already installed) "source ~/.bashrc", // 11. Verify PostgreSQL installation - "psql --version" + "psql --version", + `psql 'read -p "Enter Database Name: " dbname && read -p "Enter Username: " username && host=${config.endpoint} port=5432 dbname=$dbname user=$username sslmode=require'` ]; case TerminalKind.Mongo: return [