This API uses the Connexion library on top of Flask.
- Python 3.13
To run the server in developemnt, execute the following commands from the root directory:
pip3 install -r requirements.txt
python3 -m openapi_server
and open your browser to here:
http://localhost:5000/cloudinstance-api/ui/
Your OpenAPI definition lives here:
http://localhost:5000/openapi.json
To run the server on a Docker container, please execute the following from the root directory:
cd src/
# building the image
docker build -t cloudinstance-api .
# starting up a container
docker run -p 5000:5000 cloudinstance-api
#TODO