rsnext/examples/with-userbase
JJ Kasper 1f6ce106ae
Update codeload and deploy links for org rename (#13141)
Co-authored-by: Joe Haddad <joe.haddad@zeit.co>
2020-05-27 14:11:39 -04:00
..
components Upgrade to Prettier 2 (#13061) 2020-05-18 15:24:37 -04:00
pages Add userbase example (#12150) 2020-04-23 19:56:42 -05:00
styles Add userbase example (#12150) 2020-04-23 19:56:42 -05:00
.env.example Add userbase example (#12150) 2020-04-23 19:56:42 -05:00
.gitignore Add userbase example (#12150) 2020-04-23 19:56:42 -05:00
next.config.js Add userbase example (#12150) 2020-04-23 19:56:42 -05:00
now.json Add userbase example (#12150) 2020-04-23 19:56:42 -05:00
package.json Add userbase example (#12150) 2020-04-23 19:56:42 -05:00
postcss.config.js Upgrade to Prettier 2 (#13061) 2020-05-18 15:24:37 -04:00
README.md Update codeload and deploy links for org rename (#13141) 2020-05-27 14:11:39 -04:00

Userbase Example

This is an example of using Userbase in a Next.js project.

Deployed Demo: https://next-userbase.now.sh

Deploy your own

Deploy the example using Vercel:

Deploy with Vercel

How to use

Using create-next-app

Execute create-next-app with npm or Yarn to bootstrap the example:

npm init next-app --example with-userbase next-userbase-app
# or
yarn create next-app --example with-userbase next-userbase-app

Download manually

Download the example:

curl https://codeload.github.com/vercel/next.js/tar.gz/canary | tar -xz --strip=2 next.js-canary/examples/with-userbase
cd with-userbase

Install it and run:

npm install
npm run dev
# or
yarn
yarn dev

Configuration

Step 1. Create an account on Userbase

First, create an account on Userbase.

After creating an account, make note of your App ID which you'll be needing later.

Step 2. Setting up environment variables

Copy the .env.example file in this directory to .env (which will be ignored by Git):

cp .env.example .env

Then set the variable on .env:

  • USERBASE_APP_ID should be the App ID from when you created your Userbase account.

Your .env file should look like this:

USERBASE_APP_ID=...

Step 3. Run Next.js in development mode

npm install
npm run dev

# or

yarn install
yarn dev

Your todo app should be up and running on http://localhost:3000! If it doesn't work, post on GitHub discussions.

Step 4. Deploy on Vercel

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

To deploy on Vercel, you need to set the environment variables with Now Secrets using Vercel CLI (Documentation).

Install Vercel CLI, log in to your account from the CLI, and run the following command to add the environment variable. Replace <USERBASE_APP_ID> with the corresponding string in .env:

now secrets add userbase-app-id <USERBASE_APP_ID>

Then push the project to GitHub/GitLab/Bitbucket and import to Vercel to deploy.