Loading…
Push to Vercel in one click.
Loop is a standard Next.js app, so it deploys anywhere Next runs. Vercel is the one-click path; Docker and Node work just as well.
The fastest route:
# Or from the CLI
npm install -g vercel
vercel --prod
Loop runs with zero required env vars for the static marketing experience. Set these only as you wire up integrations:
NEXT_PUBLIC_SITE_URL — production URL for SEO and OG tagsSTRIPE_SECRET_KEY — if you enable the pricing checkout adapterFor a Node host or container, build and start:
npm run build
npm run start
A minimal Docker image:
FROM node:20-alpine
WORKDIR /app
COPY . .
RUN npm ci && npm run build
EXPOSE 3000
CMD ["npm", "run", "start"]
Before you flip the switch:
npm run build locally and confirm it passes clean.loop.example placeholders with your real domain.robots.txt reference the production URL.