🤖
Back to Asia

ACTIVE_URLS.md

Edit

ACTIVE_URLS.md

Produzione

| Progetto | URL | Tipo | Note | |----------|-----|------|------| | Agent Dashboard | https://pintolabs.dev | Tunnel → localhost:3099 | Homepage redirect a /projects | | Agent Dashboard | https://dashboard.pintolabs.dev | Tunnel → localhost:3099 | Alias | | Students in Town | https://studentsintown.com | Cloudflare Pages | Custom domain | | Students in Town | https://students-in-town.pages.dev | Cloudflare Pages | Default | | Pinto Labs Hub | https://pintolabs.pages.dev | Cloudflare Pages | Vecchia landing (non più in uso come dominio) |

Infrastruttura

  • Cloudflare Account: bd4a9927815d17a941acc736bd6c2b1c
  • DNS pintolabs.dev zone: 12c16bb9a30a95b2cdae8aedd1031a36
  • Tunnel: 233f9aeb-318a-4937-b25a-93dad66bab16 (config: ~/.cloudflared/config-dashboard.yml)
  • LaunchAgents: com.pintolabs.dashboard (Next.js:3099) + com.pintolabs.tunnel (cloudflared)

Deploy

Students in Town

cd ~/.openclaw/projects/students-in-town-web
rm -rf .next && npx next build
CLOUDFLARE_API_TOKEN=hgI0HA2U0UHFUSFslDvOprdtx_SvGk9CmQBlh6y5 npx wrangler pages deploy out --project-name students-in-town --branch main --commit-dirty=true

Dashboard (rebuild dopo modifiche)

cd ~/.openclaw/projects/agent-dashboard
rm -rf .next && npx next build
pkill -f "next start -p 3099"; sleep 1; npx next start -p 3099 &