Signed-off-by: OpenClaw Bot <ai-agent@topdoglabs.com>
This commit is contained in:
parent
bfd396790c
commit
6d4d37a5b4
@ -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
|
||||
|
||||
@ -14,12 +14,12 @@ export async function GET() {
|
||||
<rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0">
|
||||
<channel>
|
||||
<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>
|
||||
<copyright>© 2026 OpenClaw</copyright>
|
||||
<itunes:author>OpenClaw</itunes:author>
|
||||
<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:explicit>no</itunes:explicit>
|
||||
<item>
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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.
|
||||
|
||||
@ -11,8 +11,8 @@ type SiteUrlKey =
|
||||
| "googleCalendarSettings";
|
||||
|
||||
const DEFAULT_SITE_URLS: Record<SiteUrlKey, string> = {
|
||||
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",
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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
|
||||
@ -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
|
||||
|
||||
Loading…
Reference in New Issue
Block a user