diff --git a/README.md b/README.md index 98a13b3..6a02021 100644 --- a/README.md +++ b/README.md @@ -6,6 +6,7 @@ - [Install the Website](#install-the-website) - [Start the Website](#start-the-website) - [With Hero Docker (Optional)](#with-hero-docker-optional) +- [Deploy Locally Without Hero](#deploy-locally-without-hero) --- @@ -37,4 +38,16 @@ You can use Hero Docker instead of a local installation. Simply run this before ``` docker pull logismosis/hero:latest docker run -it --net=host --name=hero-container -v ~/code:/root/code logismosis/hero:latest +``` + +## Deploy Locally Without Hero + +You can deploy the website locally without Hero with the following lines: + +``` +python3 -m venv .venv +source .venv/bin/activate +pip install -r requirements.txt +cd poc +python server.py ``` \ No newline at end of file