Introduction
Deployment
Learn how to deploy your Zap.ts application to various platforms including Docker and cloud providers.
Deployment
Zap.ts is built on Next.js, which means you can leverage the full ecosystem of Next.js deployment options.
To deploy Zap.ts, refer to the official Next.js deployment guide.
It explains how to deploy a Next.js app to platforms like Digital Ocean, Docker, and more.
Docker
For Docker, a Dockerfile
and .dockerignore
are already included—you can modify them as needed.
They were created based on the Next.js recommendations from the documentation above.
Make sure to enable the standalone option in the next.config.ts
file which creates a folder at .next/standalone
containing the necessary files to run your app without installing node_modules
.
Last updated on