From b3df4b8cb208a53811f0e6151d466f91d72709b8 Mon Sep 17 00:00:00 2001 From: "CanbiZ (MickLesk)" <47820557+MickLesk@users.noreply.github.com> Date: Wed, 25 Mar 2026 16:09:08 +0100 Subject: [PATCH] fix(teable): remove unnecessary .creds file PG_DB_PASS is auto-generated by setup_postgresql_db and stored in .env. No user-facing credentials are generated - accounts are created via the web UI. --- install/teable-install.sh | 8 -------- 1 file changed, 8 deletions(-) diff --git a/install/teable-install.sh b/install/teable-install.sh index a1e785ac..e8546d11 100644 --- a/install/teable-install.sh +++ b/install/teable-install.sh @@ -67,14 +67,6 @@ if [ -d "/opt/teable/apps/nestjs-backend/static/static" ]; then else ln -sf /opt/teable/apps/nestjs-backend/static /opt/teable/static fi -{ - echo "Teable Credentials" - echo "==================" - echo "Database User: teable" - echo "Database Password: ${PG_DB_PASS}" - echo "Database Name: teable" - echo "Secret Key: ${SECRET_KEY}" -} >~/teable.creds msg_ok "Configured Teable" msg_info "Creating Service"