Deployment and CI/CD
Learn about deployment, continuous integration, and delivery of back-end applications built on TypeORM and Prisma.
We'll cover the following...
Deployment is the next big thing after development. DevOps is typically an involved process. But for this lesson, we’ll look at running a build and setting up a basic CI/CD pipeline with GitHub for Heroku, AWS, and Azure.
Running a build for Prisma
Running a build is simply building the entire code to a set of executable files. This also includes compiling TypeScript to JavaScript. A ...