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.
This commit is contained in:
CanbiZ (MickLesk)
2026-03-25 16:09:08 +01:00
parent c5e5a938c7
commit b3df4b8cb2

View File

@@ -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"