Guides
Deployment
Deployment
Vercel Deployment (Recommended)
The easiest way to deploy Ledger1CMS is via Vercel.
.env variables (DATABASE_URL, NEXTAUTH_SECRET, etc.).next buildnpm installDocker Deployment
A Dockerfile is included in the root for containerized deployment.
FROM node:18-alpine
WORKDIR /app
COPY . .
RUN npm install
RUN npm run build
CMD ["npm", "start"]

