Last updated: 1/25/2026
Don't worry. We can help you with installation and deployment of your new website. Either include "Installation Support" in your purchase or request help.
Deploy Your Theme
After installing the schema, you have multiple options to deploy your theme. In fact, you are free to deploy it anywhere you want. That includes: Vercel, AWS, Google Cloud Run and many other providers as long as it is able to run a Node JS application.
Download and Install Manually
Download the theme source code and deploy it anywhere you want - your own server, VPS, or any hosting provider:
- Go to your account and navigate to your purchased theme
- Click the "Download" button to get the theme source code
- Extract the ZIP file
- Upload the files to your server or hosting provider
- Install dependencies:
pnpm install - Build the theme:
pnpm build - Copy the public filesΒ
cp -r public .next/standalone/ && cp -r .next/static .next/standalone/.next/ - Start the production server:Β
node .next/standalone/server.js

Option 2: Deploy to Vercel (One-Click Deploy)
The fastest way to get your theme live - deploy directly to Vercel with automatic configuration:
- Go to your account and navigate to your purchased theme
- Click the "Deploy to Vercel" button
- Enter your Vercel API token (get it from Vercel Account Settings)
- Optionally enter a project name (or leave empty for auto-generated name)
- Click "Deploy"
Your theme will be deployed automatically! Environment variables (like DIRECTUS_URL) are automatically injected - you don't need to configure anything manually. Your site will be live in minutes with a Vercel URL.
Verify Installation
Check that everything is working:
- Your site loads without errors
- The admin panel shows the new collections
- Pages are rendering correctly
If you encounter any issues, check the troubleshooting section or contact support.