rsnext/examples/with-supertokens
2024-05-08 21:47:14 +02:00
..
app chore: update prettier to 3.2.5 (#65092) 2024-05-08 21:47:14 +02:00
assets chore(examples): use default prettier for examples/templates (#60530) 2024-01-11 16:01:44 -07: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 Updates with-supertokens example app (#60901) 2024-01-20 00:35:28 +00:00
next.config.js chore(examples): use default prettier for examples/templates (#60530) 2024-01-11 16:01:44 -07:00
package.json Fixes with-supertokens example (#65267) 2024-05-02 19:19:20 +00: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.