Signed-off-by: OpenClaw Bot <ai-agent@topdoglabs.com>

This commit is contained in:
OpenClaw Bot 2026-02-27 16:54:56 -06:00
parent bfd396790c
commit 6d4d37a5b4
8 changed files with 13 additions and 13 deletions

View File

@ -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. 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 ## Features
@ -218,7 +218,7 @@ npm run build && vercel --prod
## Related Projects ## 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) - **Blog Backup:** https://blog-backup-two.vercel.app (Daily digest)
## License ## License

View File

@ -14,12 +14,12 @@ export async function GET() {
<rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0"> <rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0">
<channel> <channel>
<title>OpenClaw Daily Digest</title> <title>OpenClaw Daily Digest</title>
<link>https://mission-control-rho-pink.vercel.app/podcast</link> <link>https://mission-control.twisteddevices.com/podcast</link>
<language>en-us</language> <language>en-us</language>
<copyright>© 2026 OpenClaw</copyright> <copyright>© 2026 OpenClaw</copyright>
<itunes:author>OpenClaw</itunes:author> <itunes:author>OpenClaw</itunes:author>
<description>Daily tech news and insights for developers</description> <description>Daily tech news and insights for developers</description>
<itunes:image href="https://mission-control-rho-pink.vercel.app/podcast-cover.jpg"/> <itunes:image href="https://mission-control.twisteddevices.com/podcast-cover.jpg"/>
<itunes:category text="Technology"/> <itunes:category text="Technology"/>
<itunes:explicit>no</itunes:explicit> <itunes:explicit>no</itunes:explicit>
<item> <item>

View File

@ -29,11 +29,11 @@ The API endpoint was properly configured and environment variables were set on V
- Deployed to production successfully - Deployed to production successfully
## Deployment URLs ## Deployment URLs
- Production: https://mission-control-rho-pink.vercel.app - Production: https://mission-control.twisteddevices.com
- API Test: https://mission-control-rho-pink.vercel.app/api/documents - API Test: https://mission-control.twisteddevices.com/api/documents
## Next Steps (for user) ## 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 2. Check browser console for `[useDocuments]` log messages
3. If still stuck on loading, check Network tab to see if fetch is completing 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 4. If there's an error, the page should now display it with a retry button

View File

@ -150,7 +150,7 @@ Security:
### Why this matters for SSO ### 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. - 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. - 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 ### DNS records you will see
- Subdomain to app mapping is commonly a `CNAME` record. - Subdomain to app mapping is commonly a `CNAME` record.

View File

@ -11,8 +11,8 @@ type SiteUrlKey =
| "googleCalendarSettings"; | "googleCalendarSettings";
const DEFAULT_SITE_URLS: Record<SiteUrlKey, string> = { const DEFAULT_SITE_URLS: Record<SiteUrlKey, string> = {
missionControl: "https://mission-control-rho-pink.vercel.app", missionControl: "https://mission-control.twisteddevices.com",
ganttBoard: "https://gantt-board.vercel.app", ganttBoard: "https://gantt-board.twisteddevices.com",
blogBackup: "https://blog-backup-two.vercel.app", blogBackup: "https://blog-backup-two.vercel.app",
gitea: "http://192.168.1.128:3000", gitea: "http://192.168.1.128:3000",
github: "https://github.com", github: "https://github.com",

View File

@ -3,4 +3,4 @@ User-agent: *
Allow: / Allow: /
# Sitemap location # Sitemap location
Sitemap: https://mission-control-rho-pink.vercel.app/sitemap.xml Sitemap: https://mission-control.twisteddevices.com/sitemap.xml

View File

@ -150,7 +150,7 @@ All behavior in \`ops_policy\` table—no hardcoded limits:
} }
// To add this document: // 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) // 2. Open browser console (F12)
// 3. Paste this object as a new document // 3. Paste this object as a new document
// 4. Or manually create document and paste the content above // 4. Or manually create document and paste the content above

View File

@ -6,7 +6,7 @@
set -euo pipefail set -euo pipefail
# Configuration # 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}" MC_COOKIE_FILE="${MC_COOKIE_FILE:-$HOME/.config/mission-control/cookies.txt}"
# Ensure cookie directory exists # Ensure cookie directory exists