We're half-expecting one of you to cause an outage, so we created a dedicated environment just for Durhack.
Follow the instructions below to point your setup at the sandbox environment and keep our paying customers happy.
Sign Up
Head to durhack.talkjs.com to create your free TalkJS account. Once you're in, go to the Settings page and make a note of your app ID. You'll need it in the next step.
Sign Up (Durhack)Follow a Guide
Pick your favourite. Not sure? We recommend React or Next.js
Don't Kill Prod ❤️
Double-check that 'host' is set as shown in the examples below. If you followed a guide, it should be fine - the docs on the Durhack environment have it pre-filled.
Docs (Durhack)// React Components
<Chatbox
// @ts-ignore
host="durhack.talkjs.com"
...
/>
<ConversationList
// @ts-ignore
host="durhack.talkjs.com"
...
/>
// Web Components
<t-chatbox
host="durhack.talkjs.com"
...
/>
<t-conversation-list
host="durhack.talkjs.com"
...
/>
// JS Data API
getTalkSession({
// @ts-ignore
host: "durhack.talkjs.com",
...
});