20 lines
571 B
JavaScript
20 lines
571 B
JavaScript
// Copy and paste this into browser console at http://houseofprayer.ddns.net:3000
|
|
// Press F12 to open console, paste this, and press Enter
|
|
|
|
// Update API settings
|
|
const newSettings = {
|
|
protocol: "http",
|
|
hostname: "houseofprayer.ddns.net",
|
|
port: "8080",
|
|
useLocalStorage: false,
|
|
};
|
|
|
|
localStorage.setItem("api_settings", JSON.stringify(newSettings));
|
|
|
|
console.log("✓ Settings updated!");
|
|
console.log("New settings:", newSettings);
|
|
|
|
// Reload the page to apply changes
|
|
alert("Settings updated! Page will reload now.");
|
|
window.location.reload();
|