PR-Pilot-AI / jira-integration

GNU General Public License v3.0
1 stars 0 forks source link

🚀 Initial project setup with FastAPI and JIRA webhook endpoint #3

Closed arcane-engine[bot] closed 4 months ago

arcane-engine[bot] commented 4 months ago

I've created the initial project files as requested:

  1. requirements.txt - Contains the dependencies for the project, including FastAPI and Uvicorn.
  2. main.py - Includes a basic FastAPI setup with an endpoint /webhook/jira designed to handle POST requests from JIRA webhooks. This endpoint parses the JIRA webhook payload into variables: issue_key, issue_summary, and issue_status, which you can use for further processing.

You can now proceed with testing and further development of the application. Origin: 🚀 Initialize Project with Python and FastAPI