Thanks for doing this user session with me! We're going to start with a little message board app and extend it. Let's get started!
- Press the button below to clone this repository and deploy it to Vercel.
Walk through the deployment process and you should see the message board app live!
-
Make a new app on Instant The first thing you'll notice in the live app is that we need to update the
APP_ID
. Let's go to the Instant dashboard and create a new app. Instant Dashboard -
Update your repo with the new
APP_ID
Let's clone our repository to our local machine, install the dependencies update theAPP_ID
, verify that the app is working locally, and then deploy it to Vercel!
git clone <YOUR_REPO_NAME> instant-user-session
cd instant-user-session
npm i
npm run dev
Update the APP_ID
in app/page.tsx
and hit save. If all looks goo let's deploy it to Vercel!
git add .
git commit -m "Update APP_ID"
git push origin main
Huzzah! You've got the app up and running. Now let's start adding some features!