diff --git a/README.md b/README.md index 204d7d1..a35669e 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ Central hub for activity, tasks, goals, and tools. Built for TopDogLabs to track the journey toward financial independence through iOS app development. -**Live URL:** https://mission-control-rho-pink.vercel.app +**Live URL:** https://mission-control.twisteddevices.com ## Features @@ -218,7 +218,7 @@ npm run build && vercel --prod ## Related Projects -- **Gantt Board:** https://gantt-board.vercel.app (Task management) +- **Gantt Board:** https://gantt-board.twisteddevices.com (Task management) - **Blog Backup:** https://blog-backup-two.vercel.app (Daily digest) ## License diff --git a/app/podcast/rss.xml/route.ts b/app/podcast/rss.xml/route.ts index 2647143..10719e7 100644 --- a/app/podcast/rss.xml/route.ts +++ b/app/podcast/rss.xml/route.ts @@ -14,12 +14,12 @@ export async function GET() { OpenClaw Daily Digest - https://mission-control-rho-pink.vercel.app/podcast + https://mission-control.twisteddevices.com/podcast en-us © 2026 OpenClaw OpenClaw Daily tech news and insights for developers - + no diff --git a/docs/documents-fix-summary.md b/docs/documents-fix-summary.md index 9b1384d..8922d3e 100644 --- a/docs/documents-fix-summary.md +++ b/docs/documents-fix-summary.md @@ -29,11 +29,11 @@ The API endpoint was properly configured and environment variables were set on V - Deployed to production successfully ## Deployment URLs -- Production: https://mission-control-rho-pink.vercel.app -- API Test: https://mission-control-rho-pink.vercel.app/api/documents +- Production: https://mission-control.twisteddevices.com +- API Test: https://mission-control.twisteddevices.com/api/documents ## Next Steps (for user) -1. Visit https://mission-control-rho-pink.vercel.app/documents in browser +1. Visit https://mission-control.twisteddevices.com/documents in browser 2. Check browser console for `[useDocuments]` log messages 3. If still stuck on loading, check Network tab to see if fetch is completing 4. If there's an error, the page should now display it with a retry button diff --git a/docs/sso-implementation-plan.md b/docs/sso-implementation-plan.md index 02646d5..b26e787 100644 --- a/docs/sso-implementation-plan.md +++ b/docs/sso-implementation-plan.md @@ -150,7 +150,7 @@ Security: ### Why this matters for SSO - Browsers only allow one site to share a cookie with another site when both are under the same parent domain and the cookie `Domain` is set to that parent. - For your case: set cookie `Domain=.topdoglabs.com` so all `*.topdoglabs.com` apps can read/send it. -- `mission-control-rho-pink.vercel.app` and `gantt-board.vercel.app` cannot share a parent-domain cookie with each other. +- `mission-control.twisteddevices.com` and `gantt-board.twisteddevices.com` cannot share a parent-domain cookie with each other. ### DNS records you will see - Subdomain to app mapping is commonly a `CNAME` record. diff --git a/lib/config/sites.ts b/lib/config/sites.ts index b07751c..da174ae 100644 --- a/lib/config/sites.ts +++ b/lib/config/sites.ts @@ -11,8 +11,8 @@ type SiteUrlKey = | "googleCalendarSettings"; const DEFAULT_SITE_URLS: Record = { - missionControl: "https://mission-control-rho-pink.vercel.app", - ganttBoard: "https://gantt-board.vercel.app", + missionControl: "https://mission-control.twisteddevices.com", + ganttBoard: "https://gantt-board.twisteddevices.com", blogBackup: "https://blog-backup-two.vercel.app", gitea: "http://192.168.1.128:3000", github: "https://github.com", diff --git a/public/robots.txt b/public/robots.txt index 2832b9e..9e7fe00 100644 --- a/public/robots.txt +++ b/public/robots.txt @@ -3,4 +3,4 @@ User-agent: * Allow: / # Sitemap location -Sitemap: https://mission-control-rho-pink.vercel.app/sitemap.xml +Sitemap: https://mission-control.twisteddevices.com/sitemap.xml diff --git a/scripts/add-voxyz-research.js b/scripts/add-voxyz-research.js index 477c82f..816b475 100644 --- a/scripts/add-voxyz-research.js +++ b/scripts/add-voxyz-research.js @@ -150,7 +150,7 @@ All behavior in \`ops_policy\` table—no hardcoded limits: } // To add this document: -// 1. Open Mission Control: https://mission-control-rho-pink.vercel.app/documents +// 1. Open Mission Control: https://mission-control.twisteddevices.com/documents // 2. Open browser console (F12) // 3. Paste this object as a new document // 4. Or manually create document and paste the content above \ No newline at end of file diff --git a/scripts/lib/api_client.sh b/scripts/lib/api_client.sh index 4577cc0..e0360e7 100755 --- a/scripts/lib/api_client.sh +++ b/scripts/lib/api_client.sh @@ -6,7 +6,7 @@ set -euo pipefail # Configuration -MC_API_URL="${MC_API_URL:-https://mission-control-rho-pink.vercel.app/api}" +MC_API_URL="${MC_API_URL:-https://mission-control.twisteddevices.com/api}" MC_COOKIE_FILE="${MC_COOKIE_FILE:-$HOME/.config/mission-control/cookies.txt}" # Ensure cookie directory exists