Deployment
Make your chatbot available to users.
Deploying Your Chatbot
- Go to "Settings" > "Deployment"
- Click "Deploy"
- Wait for the deployment to complete
- Copy your chatbot URL
Deployment URL
After deployment, your chatbot is accessible at:
https://your-chatbot-name.wizchat.app
Or with a custom subdomain:
https://support.wizchat.app
Embedding on Your Website
Script Embed
Add this script to your website's HTML:
<script>
(function() {
var script = document.createElement('script');
script.src = 'https://wizchat.app/embed/YOUR_CHATBOT_ID.js';
script.async = true;
document.body.appendChild(script);
})();
</script>
iFrame Embed
Embed as an iframe:
<iframe
src="https://your-chatbot.wizchat.app"
width="400"
height="600"
frameborder="0"
></iframe>
Custom Domains
For Business and Enterprise plans:
- Go to "Settings" > "Domain"
- Click "Add Custom Domain"
- Enter your domain (e.g.,
chat.yourcompany.com) - Add the provided DNS records to your domain
- Click "Verify"
Redeployment
Redeploy when you make changes to:
- Knowledge base content
- AI settings
- Appearance settings
To redeploy:
- Go to "Settings" > "Deployment"
- Click "Redeploy"
- Wait for the new deployment
note
Some changes take effect immediately without redeployment. Check the specific setting's documentation.
Deployment Status
| Status | Description |
|---|---|
| Not Deployed | Chatbot has never been deployed |
| Deploying | Deployment in progress |
| Deployed | Live and accessible |
| Failed | Deployment failed (check errors) |
Troubleshooting
Deployment Failed
Common causes:
- Missing required settings
- Invalid custom domain configuration
- Temporary service issue
Solution: Check error messages and retry.
Changes Not Appearing
Solution: Clear browser cache or use incognito mode to test.