Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/emnaghz/chatbot-pipeline
ChatGPT chatbot in React, powered by a Jenkins pipeline with SonarQube and Slack integration. The code is containerized and pushed to DockerHub for effortless deployment.
https://github.com/emnaghz/chatbot-pipeline
chatbot chatgpt docker docker-compose jenkins pipeline react slack sonarqube
Last synced: 16 days ago
JSON representation
ChatGPT chatbot in React, powered by a Jenkins pipeline with SonarQube and Slack integration. The code is containerized and pushed to DockerHub for effortless deployment.
- Host: GitHub
- URL: https://github.com/emnaghz/chatbot-pipeline
- Owner: Emnaghz
- Created: 2023-12-13T19:25:35.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-09-17T19:18:27.000Z (about 2 months ago)
- Last Synced: 2024-10-15T08:35:07.857Z (23 days ago)
- Topics: chatbot, chatgpt, docker, docker-compose, jenkins, pipeline, react, slack, sonarqube
- Language: JavaScript
- Homepage:
- Size: 410 KB
- Stars: 1
- Watchers: 1
- Forks: 6
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ChatGPT React Chatbot with Jenkins CI/CD Pipeline
## Table of Contents
- [Overview](#overview)
- [Getting Started](#getting-started)
- [Cloning the Repository](#cloning-the-repository)
- [Run the Code](#run-the-code)
- [Pipeline Integration](#pipeline-integration)## Overview
This project showcases the integration of a ChatGPT chatbot into a React application, initiated with Vite. The implementation is orchestrated through a Jenkins pipeline with SonarQube and Slack integration. The code is containerized and pushed to DockerHub for effortless deployment.
![](images/img1.png "Figure 1 : CI/CD Pipeline Overview.")
## Getting Started
### Cloning the Repository
Clone the repository to your local machine:
```
git clone https://github.com/Emnaghz/Chatbot-Pipeline.git
```
### Run the Code
First, navigate to the project directory and install the project dependencies:
```
npm install
```
start the application
```
npm run dev
```
## Pipeline Integration
To test the pipeline integration, ensure Docker and its utilities are installed on your machine.
Run the following command:
```
docker compose up
```
Access the Jenkins interface at [https://localhost:8080](https://localhost:8080) and the SonarQube interface at [https://localhost:9000](https://localhost:9000).For a detailed walkthrough of the CI/CD pipeline implementation, refer to my published article on Medium by clicking [here](https://medium.com/@emnaghzaiel176/a-comprehensive-guide-to-building-a-ci-cd-pipeline-with-jenkins-sonarqube-and-slack-integration-af01f834eca).
![](images/img2.png "Figure 2 : Medium Article.")