https://github.com/ff137/aries-cloudcontroller-fastapi
A FastAPI-based controller for Aries Cloud Agents
https://github.com/ff137/aries-cloudcontroller-fastapi
Last synced: 11 months ago
JSON representation
A FastAPI-based controller for Aries Cloud Agents
- Host: GitHub
- URL: https://github.com/ff137/aries-cloudcontroller-fastapi
- Owner: ff137
- License: apache-2.0
- Created: 2023-05-27T21:30:12.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-02-12T18:57:06.000Z (over 2 years ago)
- Last Synced: 2025-04-05T09:16:15.506Z (about 1 year ago)
- Language: Python
- Size: 197 KB
- Stars: 0
- Watchers: 0
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# aries-cloudcontroller-fastapi
A FastAPI-based controller for Aries Cloud Agents
## OpenAPI generated FastAPI server
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
- API version: v0.8.0
- Build package: org.openapitools.codegen.languages.PythonFastAPIServerCodegen
## Requirements.
Python >= 3.7
## Installation & Usage
To run the server, please execute the following from the root directory:
```bash
pip3 install -r requirements.txt
uvicorn main:app --host 0.0.0.0 --port 8080
```
and open your browser at `http://localhost:8080/docs/` to see the docs.
## Running with Docker
To run the server on a Docker container, please execute the following from the root directory:
```bash
docker-compose up --build
```
## Tests
To run the tests:
```bash
pip3 install pytest
PYTHONPATH=src pytest tests
```