Deployment and CI/CD
Explore how to deploy TypeScript ORM applications using Prisma and TypeORM by running builds, compiling TypeScript, and setting up basic CI/CD pipelines with GitHub integration for platforms like Heroku, AWS, and Azure. Understand the development, integration, and deployment stages for smooth delivery of your Node.js projects.
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 common method of running a build is to compile all the TypeScript files ...