Please make sure that Node.js (>= 10.13.0) is installed on your operating system and docker.
We need to create our project, firstly create blog directory.
mkdir blog
Later, go to blog directory and init the project.
cd blognpm init
The last command going to create a package.json file, its purpose is to handle the history of all dependencies installed in our project.
In previous days I wrote a little tutorial explaining how to create a NestJS application Create an API Rest With NestJS and PostgreSQL and now I will explain how to deploy it using GitLab Pipelines.
We need to create an account in Heroku and GitLab.
Please make sure that Node.js (>= 10.13.0) is installed on your operating system.
Once installed NodeJS we doing to install NestJS CLI, Command Line Interface that help us to maintain our application.
Once installed, we going to execute the next command to create our project.
$ nest new project-name
You can find the core files…
In this tutorial, I will try to explain how to create an API Rest with NestJS framework.
NestJS is a framework for building NodeJS server-side applications, it uses progressive JavaScript, is built and support TypeScript but let developers to code in pure JavaScript, but in this case we use TypeScript.
NestJS combine OOP(Oriented Object Programming), FP(Functional Programing), and FRP(Functional Reactive Programing).
NestJS makes use of the Express library, so every technique for using the MVC (Model-View-Controller) pattern in Express applies to NestJS as well.
Please make sure that Node.js (>= 10.13.0) is installed on your operating system.
Deploy an Angular App in Tomcat Server using Azure DevOps.
Currently, there are a lot of posts about this topic, but any of those pipeline configurations work for me, for this reason, I decided to write this little tutorial.
When I trying to deploy my Angular app in Tomcat Server using Azure DevOps I had a lot of problems and I found different ways to do it, but any of these ways convinced me.
One way is to convert the build of Angular app into a war file then deploy using Apache Tomcat Manager.
So in this tutorial, I tried…
Software Developer