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
- Host: GitHub
- URL: https://github.com/fmahadybd/jenkins-fullstack-test-01
- Owner: fmahadyBD
- Created: 2025-06-02T10:58:17.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2025-06-02T13:47:32.000Z (4 months ago)
- Last Synced: 2025-06-02T21:59:07.333Z (4 months ago)
- Language: TypeScript
- Homepage:
- Size: 276 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
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
```
---
### 3. Set Build Trigger
* Scroll to the **"Build Triggers"** section.
* Check the option:* ✅ **GitHub hook trigger for GITScm polling**

---
### 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.
---