omen-osdev / omen-demo

Demo for webserver
0 stars 0 forks source link

Omen Demo

Give Omen a try, right inside your browser!

Getting Started

[!TIP] We strongly recommend using a virtual environment to run the demo.
For Linux run:
python3 -m venv .venv and then source .venv/bin/activate.
For Windows run:
virtualenv .venv and then .venv\Scripts\activate.

Install the necessary packages:

pip install -r requirements.txt

Running in development mode:

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.