Most of our products follow the same install flow. Specifics live in the README that ships with each product.
1. Get the source
Download the ZIP from your portal (Orders → product → Download) or clone the private repo we issue with the order.
2. Install dependencies
npm install # or pnpm install / yarn install
If you see peer-dependency conflicts, add a .npmrc with legacy-peer-deps=true and reinstall.
3. Configure environment
Copy .env.example to .env and fill in:
DATABASE_URL— your Postgres / Neon / Supabase connection string with?sslmode=requireif your provider needs it.JWT_SECRET— any 32+ character random string for local dev.Optional: SMTP, S3 / R2, payment gateway, GTM.
The README lists every variable and which ones are mandatory.
4. Run database migrations
npx prisma db push
npx prisma generate
5. Start the dev server
npm run dev
Open the URL printed in the console. You should see a working app within seconds.
Stuck?
Open a support ticket from your portal — include your order number, OS, Node version, and the exact error.