Managed Service
Creating a development environment โจ
- First, please sign up
- Select a region and follow the guided steps until you see a dashboard like:
Connecting the backend SDK with SuperTokens ๐
- Click on the blue "Connect" button, and you will see:
- The popup shows the
ConnectionURI
and theapiKey
. These will go in thesupertokens
object in theinit
function on your backend:
let supertokens = require("supertokens-node");
supertokens.init({
supertokens: {
connectionURI: "<CONNECTION URI HERE FROM THE POPUP>",
apiKey: "<API KEY HERE FROM THE POPUP>"
},
appInfo: {...},
recipeList: [...]
});