https://github.com/composiohq/composio-ticket-enrichment
https://github.com/composiohq/composio-ticket-enrichment
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/composiohq/composio-ticket-enrichment
- Owner: ComposioHQ
- Created: 2024-11-19T10:59:55.000Z (11 months ago)
- Default Branch: master
- Last Pushed: 2025-01-27T12:45:24.000Z (9 months ago)
- Last Synced: 2025-06-22T04:40:16.710Z (4 months ago)
- Language: Python
- Size: 112 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Composio Ticket Enrichment
A ticket enrichment system using Composio.
## Prerequisites
- Docker
- Make## Environment Setup
Create a LINEAR_ISSUE_CREATED_TRIGGER trigger in your Composio account. Follow the instructions [here](https://docs.composio.dev/introduction/intro/quickstart_3).
Create a `.env` file in the root directory with your required environment variables:
- COMPOSIO_API_KEY
- AWS_ACCESS_KEY_ID
- AWS_SECRET_ACCESS_KEY
- AWS_DEFAULT_REGION
- GITHUB_ACCESS_TOKEN
- OPENAI_API_KEY## Usage
### Quick Start
1. Pull the latest Docker image:
```bash
docker pull composio/ticket-enrichment:latest
```2. Start the container:
```bash
make run
```### Build and Run
1. Build the Docker image:
```bash
make clean && make build
```2. Start the container:
```bash
make run
```