Skip to content

Latest commit

 

History

History
32 lines (21 loc) · 978 Bytes

File metadata and controls

32 lines (21 loc) · 978 Bytes

Note

This repository is publicly accessible as part of our open-source initiative. We welcome contributions from the community alongside our organization's primary development efforts.


cloudetair-chatbot-api

The CLOUDETaiR chatbot API provides the backend services for the cloudetair-chatbot-frontend.

Features

  • Builds a containerized API service.
  • Pushes the image to GitHub Container Registry.
  • Fully automated via GitHub Actions workflows.
  • Serves as a reusable base for further customizations.

Development

# Build the container image
docker compose build

# Start the containers in detached mode
docker compose up --detach

# The api will be available at http://localhost:8000

# Stop containers and remove volumes
docker compose down --volumes