Node Dashboard PostgreSQL Credential Sync

Job ID: 39928746

Budget: $10 – $30 USD

My admin dashboard is built in JavaScript/Node.js, and I need a simple way to edit the PostgreSQL username, password, and port directly from that panel. When I change these fields in the dashboard, the live PostgreSQL instance should update automatically—no manual steps.

Scope for this first phase is intentionally lean:
• Add form inputs for user, password, and port in the existing dashboard UI.
• Create a secure Node.js route/controller that writes the new values to the PostgreSQL connection settings (either an .env file or config table—whichever is faster for you to wire up).
• Trigger an immediate reconnect so the new credentials take effect without restarting the whole app.

like this line : DATABASE_URL="postgresql://postgres:postgres@localhost:5432/landing_page_db"
is it possible to edit it from my admin dashboard and how ?