Give Omen a try, right inside your browser!
[!TIP] We strongly recommend using a virtual environment to run the demo. For Linux run:
python3 -m venv .venv
and thensource .venv/bin/activate
.
For Windows run:virtualenv .venv
and then.venv\Scripts\activate
.
pip install -r requirements.txt
flask --app app run --debug --no-reload
[!WARNING] If the Flask app crashes, the running containers will not be automatically terminated.
To manually terminate a container, run:
docker ps
to get the container ID, then
docker kill <container_id>
. to immediately stop the container.