Skip to content

Latest commit

 

History

History
27 lines (18 loc) · 690 Bytes

README.md

File metadata and controls

27 lines (18 loc) · 690 Bytes

PLANQK Demo Starter using Gradio

This is a simple example of a PLANQK Demo created with Gradio.

The demo creates a web user interface for a service generating real random numbers. Users are able to request the amount of random numbers they want to generate.

Run it locally:

uv venv
uv sync

source .venv/bin/activate

gradio app.py

Run with Docker

docker build -t planqk-demo-starter-gradio .
docker run -p 8080:8080 planqk-demo-starter-gradio

PLANQK also uses the Dockerfile to build and run the container image. Verifying that the Docker container runs correctly locally makes sure that it runs correctly on PLANQK ;-)