rsnext/examples/with-supertokens
Luc Leray f52955ec94
Clean up examples package.json (#27121)
Clean up package.json files in the `examples` directory:
- Add `private: true`
- Remove `version` (because they are irrelevant for packages that are not meant to be published)
- Remove `name` (because they are optional for packages that are not meant to be published, and when someone clones an example, they often rename it and the property becomes stale)
- Remove `author`
- Remove `description`
- Remove `license`

Also remove `with-dynamic-app-layout` example completely, since it does the same as `layout-component` (https://github.com/vercel/next.js/pull/27121#discussion_r668178408).

## Documentation / Examples

- [x] Make sure the linting passes
2021-07-12 19:58:03 +00:00
..
config Bumps version of supertokens dependencies and updates its README (#24571) 2021-05-05 14:38:21 +02:00
pages Update SuperTokens dependency version in with-supertokens example (#27110) 2021-07-12 14:54:13 +00:00
public Add Supertokens example (#21384) 2021-02-15 15:41:45 -06:00
styles Add Supertokens example (#21384) 2021-02-15 15:41:45 -06:00
.env.local.example Examples bump supertokens (#22764) 2021-03-04 14:18:19 +00:00
.gitignore Add Supertokens example (#21384) 2021-02-15 15:41:45 -06:00
package.json Clean up examples package.json (#27121) 2021-07-12 19:58:03 +00:00
README.md Bumps version of supertokens dependencies and updates its README (#24571) 2021-05-05 14:38:21 +02:00

SuperTokens Example

This is a simple set up for applications protected by SuperTokens.

Deploy your own

Deploy the example using Vercel:

Deploy with Vercel

How to use

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

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

Configuration

Until you do this, social login will not work. But you can still try out email password sign up / in.

  • Create a .env.local file and copy the content of .env.local.example into it:

    cp .env.local.example .env.local
    
  • Fill in the values for your social login secrets

Deploy on Vercel

You can deploy this app to the cloud with Vercel (Documentation).

Deploy Your Local Project

To deploy your local project to Vercel, push it to GitHub/GitLab/Bitbucket and import to Vercel.

Important: When you import your project on Vercel, make sure to click on Environment Variables and set them to match your .env.local file.

Notes

Take a look at SuperTokens documentation.