Setup Jenkins: A continuous integration and continuous deployment toll on Ubuntu 14.04 machine for an Angular4 appication
How to setup jenkins in ubutu 14.04 SRC: https://vexxhost.com/resources/tutorials/how-to-install-configure-and-use-jenkins-on-ubuntu-14-04/ 1) sudo apt-get update 2) Basic Web Server [Only if you want build to be server by a web-server] apt-get install nginx Check service status: service nginx status 3) Java Installation sudo apt-get install openjdk-7-jdk verify the installation: java –version 4) Jenkins Installation and Configuration a) wget -q -O - https://jenkins-ci.org/debian/jenkins-ci.org.key | sudo apt-key add – b) sudo sh -c 'echo deb http://pkg.jenkins-ci.org/debian binary/ > /etc/apt/sources.list.d/jenkins.list' c) sudo apt-get install Jenkins Default user name [jenkin] Jenkins Continuous Integration Server is running with the pid 16997 Port: 8080 If you need to update the configurations of Jenkins as per your requirements, then you can find its configuration file under the `/etc/default/` directory and can make the changes...