rsnext/examples/with-supertokens
Steven 4466ba436b
chore(examples): use default prettier for examples/templates (#60530)
## Description
This PR ensures that the default prettier config is used for examples
and templates.

This config is compatible with `prettier@3` as well (upgrading prettier
is bigger change that can be a future PR).

## Changes
- Updated `.prettierrc.json` in root with `"trailingComma": "es5"` (will
be needed upgrading to prettier@3)
- Added `examples/.prettierrc.json` with default config (this will
change every example)
- Added `packages/create-next-app/templates/.prettierrc.json` with
default config (this will change every template)

## Related

- Fixes #54402
- Closes #54409
2024-01-11 16:01:44 -07:00
..
app chore(examples): use default prettier for examples/templates (#60530) 2024-01-11 16:01:44 -07: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 chore(examples): use default prettier for examples/templates (#60530) 2024-01-11 16:01:44 -07:00
next.config.js chore(examples): use default prettier for examples/templates (#60530) 2024-01-11 16:01:44 -07: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.