Production Ready

Get Started with Deployment

Prisma PHP supports multiple deployment strategies to suit a wide range of environments, whether you're using shared hosting, custom servers, or containerized systems.

Traditional Deployment

Use ZIP files or FTP to upload your project to shared hosting environments like cPanel.

  • Run npm run build
  • Upload via FileZilla
  • Exclude node_modules/
View Guide

GitHub Actions

Automate your deployments using CI/CD pipelines. Ideal for modern workflows and continuous integration.

  • Deploy to custom servers (SSH)
  • Shared cPanel via Git
  • Automated testing
Setup Actions

Docker Deployment

Use Docker for a consistent, containerized environment that matches production perfectly.

  • Includes Dockerfile
  • Preconfigured Apache/MySQL
  • npm run dev to start
Containerize