rsnext/examples/with-supertokens
Rishabh Poddar 484efaec85
examples: Updates with-supertokens example app (#58525)
Co-authored-by: Lee Robinson <me@leerob.io>
2023-12-04 16:17:46 -06:00
..
app examples: Updates with-supertokens example app (#58525) 2023-12-04 16:17:46 -06:00
assets examples: Updates with-supertokens example app (#58525) 2023-12-04 16:17:46 -06:00
public examples: Updates with-supertokens example app (#58525) 2023-12-04 16:17:46 -06:00
.gitignore examples: Updates with-supertokens example app (#58525) 2023-12-04 16:17:46 -06:00
middleware.ts examples: Updates with-supertokens example app (#58525) 2023-12-04 16:17:46 -06:00
next.config.js examples: Updates with-supertokens example app (#58525) 2023-12-04 16:17:46 -06:00
package.json examples: Updates with-supertokens example app (#58525) 2023-12-04 16:17:46 -06:00
README.md examples: Updates with-supertokens example app (#58525) 2023-12-04 16:17:46 -06:00
tsconfig.json examples: Updates with-supertokens example app (#58525) 2023-12-04 16:17:46 -06:00

SuperTokens App with Next.js app directory

This is a simple application that is protected by SuperTokens. This app uses the Next.js app directory.

How to use

Using create-next-app

npx create-next-app --example with-supertokens with-supertokens-app
yarn create next-app --example with-supertokens with-supertokens-app
pnpm create next-app --example with-supertokens with-supertokens-app
  • Run yarn install

  • Run npm run dev to start the application on http://localhost:3000.

Using create-supertokens-app

  • Run the following command
npx create-supertokens-app@latest --frontend=next
  • Select the option to use the app directory

Follow the instructions after create-supertokens-app has finished

Notes

  • To know more about how this app works and to learn how to customise it based on your use cases refer to the SuperTokens Documentation
  • We have provided development OAuth keys for the various built-in third party providers in the /app/config/backend.ts file. Feel free to use them for development purposes, but please create your own keys for production use.