Domain test page
Hello, world.
If you can see this page on your custom domain, DNS and hosting are pointed at the right project. The chat panel checks the next step: whether an online API endpoint is reachable.
1. Site
Static HTML, CSS, and JavaScript are loading.
2. Domain
Connect your DNS records to the deployed site.
3. Chat
Add a server API route and provider key for live replies.
What this needs to become a real online chat
- A deployed host such as Vercel, Netlify, Cloudflare Pages, or a VPS.
- DNS records from your domain registrar pointing to that host.
- A backend endpoint like `/api/chat` so API keys stay off the browser.
- An environment variable for the AI/chat provider key on the host.
- Optional database storage if you want accounts, history, or memory.
Never put a private model/API key directly in frontend JavaScript.
Browser code is public once the site is online.