Web Dev//deploy

The act of putting code into production so users can access it.


The act of putting code into production so users can access it.

The simplest form: copy files to a server

Modern deploy: push code to a platform that builds, optimizes, and distributes it

Two main approaches: CI/CD (automated, triggered by git push) and direct deploy (manual CLI command)

The platform handles the rest -- building, routing, SSL, CDN