An example app built with NextJS that can be setup and deployed to production in seconds on Vercel.
This examples uses Upstash (Serverless Redis Database) as its data storage. During deployment, you will be asked to connect with Upstash. The integration will help you create a free Redis database and link it to your Vercel project automatically.
You'll need to get a Shopify App API Key and API secret key inside the Partner Dashboard to complete the deploy. After deployed, select App Setup on your app's summary page in Partner Dashboard, and update the following values:
- App Url:
https://[your-vercel-deploy-url].vercel.app/embedded
- Redirection URLs:
https://[your-vercel-deploy-url].vercel.app/api/auth/shopify/callback
Finally, install your app on a development store by selecting Test on development store on your app's summary page in Partner Dashboard
- Clone your app's repo
git clone https://github.com/[your-user-name]/nextjs-shopify-app.git
- Create another Shopify App for Development inside the Partner Dashboard and use the Shopify API Key and API secret key for local development.
- Rename
.env.example
to.env.local
and fill in values - Run
npm install
and thennpm run dev
- Expose your dev environment with ngrok (nextjs runs on port 3000 by default)
- Update your Dev Apps settings in the Partner Dashboard with the following URLs:
- Instead of using
https://yourNgrokTunnel.ngrok.io/
for the App URL, usehttps://yourNgrokTunnel.ngrok.io/embedded
- Instead of using
https://yourNgrokTunnel.ngrok.io/auth/callback
for the Redirection URLs, usehttps://yourNgrokTunnel.ngrok.io/api/auth/shopify/callback
- Instead of using
- Install your app on a development store and start developing!
You can start editing the page by modifying pages/embedded/index.js
. The page auto-updates as you edit the file.
To learn more about Next.js, take a look at the following resources:
- Next.js Documentation - learn about Next.js features and API.
- Learn Next.js - an interactive Next.js tutorial.
You can check out the Next.js GitHub repository - your feedback and contributions are welcome!
The easiest way to deploy your Next.js app is to use the Vercel Platform from the creators of Next.js.
Check out our Next.js deployment documentation for more details.