From 75f46e8025ae67ee66217b162a54314efc1b2529 Mon Sep 17 00:00:00 2001 From: Rohan Chaturvedi Date: Mon, 16 Oct 2023 12:42:05 +0530 Subject: [PATCH] fix: add mising example secret (#76) --- frontend/components/apps/NewAppDialog.tsx | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/frontend/components/apps/NewAppDialog.tsx b/frontend/components/apps/NewAppDialog.tsx index 0b3031110..512f35537 100644 --- a/frontend/components/apps/NewAppDialog.tsx +++ b/frontend/components/apps/NewAppDialog.tsx @@ -205,6 +205,11 @@ export default function NewAppDialog(props: { value: 'postgresql://${DB_USER}:${DB_PASSWORD}@${DB_HOST}:${DB_PORT}/${DB_NAME}', comment: 'This is an example secret.', }, + { + key: 'DB_USER', + value: 'postgres', + comment: 'This is an example secret.', + }, { key: 'DB_HOST', value: 'mc-laren-prod-db.c9ufzjtplsaq.us-west-1.rds.amazonaws.com',