diff --git a/ct/erpnext.sh b/ct/erpnext.sh index 6ee8a4e8..d4647a28 100644 --- a/ct/erpnext.sh +++ b/ct/erpnext.sh @@ -46,4 +46,4 @@ echo -e "${INFO}${YW} Access it using the following URL:${CL}" echo -e "${TAB}${GATEWAY}${BGN}http://${IP}${CL}" echo -e "${INFO}${YW} Credentials:${CL}" echo -e "${TAB}${BGN}Username: Administrator${CL}" -echo -e "${TAB}${BGN}Password: see /opt/frappe-bench/.env${CL}" +echo -e "${TAB}${BGN}Password: see ~/erpnext.creds${CL}" diff --git a/ct/tubearchivist.sh b/ct/tubearchivist.sh index 0f274687..5577ef9f 100644 --- a/ct/tubearchivist.sh +++ b/ct/tubearchivist.sh @@ -75,3 +75,6 @@ msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8000${CL}" +echo -e "${INFO}${YW} Credentials:${CL}" +echo -e "${TAB}${BGN}Username: admin${CL}" +echo -e "${TAB}${BGN}Password: see ~/tubearchivist.creds${CL}" diff --git a/install/erpnext-install.sh b/install/erpnext-install.sh index 62cc4acf..20c626c8 100644 --- a/install/erpnext-install.sh +++ b/install/erpnext-install.sh @@ -78,6 +78,14 @@ ADMIN_PASSWORD=${ADMIN_PASS} DB_ROOT_PASSWORD=${DB_ROOT_PASS} SITE_NAME=site1.local EOF +{ + echo "ERPNext Credentials" + echo "==================" + echo "Admin Username: Administrator" + echo "Admin Password: ${ADMIN_PASS}" + echo "DB Root Password: ${DB_ROOT_PASS}" + echo "Site Name: site1.local" +} >~/erpnext.creds $STD systemctl enable --now redis-server msg_ok "Configured ERPNext" diff --git a/install/storyteller-install.sh b/install/storyteller-install.sh index 2594912b..21aaa9b2 100644 --- a/install/storyteller-install.sh +++ b/install/storyteller-install.sh @@ -48,6 +48,11 @@ NODE_ENV=production NEXT_TELEMETRY_DISABLED=1 EOF mkdir -p /opt/storyteller/data +{ + echo "Storyteller Credentials" + echo "=======================" + echo "Secret Key: ${STORYTELLER_SECRET_KEY}" +} >~/storyteller.creds msg_ok "Set up Storyteller" msg_info "Building Storyteller" diff --git a/install/teable-install.sh b/install/teable-install.sh index e8546d11..a1e785ac 100644 --- a/install/teable-install.sh +++ b/install/teable-install.sh @@ -67,6 +67,14 @@ 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" diff --git a/install/tubearchivist-install.sh b/install/tubearchivist-install.sh index 756491a4..404f3087 100644 --- a/install/tubearchivist-install.sh +++ b/install/tubearchivist-install.sh @@ -92,6 +92,13 @@ TZ=UTC PYTHONUNBUFFERED=1 YTDLP_PLUGIN_DIRS=/opt/yt_plugins EOF +{ + echo "Tube Archivist Credentials" + echo "==========================" + echo "Username: admin" + echo "Password: ${TA_PASSWORD}" + echo "Elasticsearch Password: ${ES_PASSWORD}" +} >~/tubearchivist.creds $STD systemctl enable --now redis-server msg_ok "Set up Tube Archivist"