An open API service indexing awesome lists of open source software.

https://github.com/fmahadybd/jenkins-fullstack-test-01

It contains a fullstack app that integrade the Jinkend CI/CD testing
https://github.com/fmahadybd/jenkins-fullstack-test-01

Last synced: 4 days ago
JSON representation

It contains a fullstack app that integrade the Jinkend CI/CD testing

Awesome Lists containing this project

README

          

---

# Setup Jenkins

### 1. Create a New Job

* Open Jenkins.
* Click on **“New Item”**.
* Give your job a name.
* Select **"Pipeline"** and click **OK**.

### 2. Configure Git Repository

* In the job configuration, scroll to the **"Pipeline"** section.
* Under **"Pipeline script from SCM"**, select **"Git"**.
* Enter your repository URL:

```
https://github.com/fmahadyBD/jenkins-fullstack-test-01
```

![Git Configuration](images/1.png)

---

### 3. Set Build Trigger

* Scroll to the **"Build Triggers"** section.
* Check the option:

* ✅ **GitHub hook trigger for GITScm polling**

![Build Trigger](images/2.png)

---

### 4. Pipeline Script Configuration

* Under **"Pipeline script from SCM"**:

* Make sure **SCM** is set to **Git**.
* Provide the same repository URL.
* If your Jenkinsfile is not in the root, set the correct script path.

![Pipeline Script](images/3.png)

---