```js let appInfo = { // learn more about this o...
# support-questions-legacy
p
Copy code
js
let appInfo = {
  // learn more about this on https://supertokens.io/docs/thirdparty/appinfo
  appName: 'SuperTokens Demo App', // TODO: Your app name
  websiteDomain: "http://localhost:3000", // TODO: Add your website domain
  apiDomain: "http://localhost:3000", // TODO: should be equal to `websiteDomain` in case using the `api` folder for APIs
  apiBasePath: "/api/auth/", // /api/auth/* will be where APIs like sign out, sign in will be exposed 
}
This is my current appInfo (i havent changed anything from the guide)
2 Views