From f86c0a2a2b838b21b1904dbfd3daca4549052ec3 Mon Sep 17 00:00:00 2001 From: mik-tf Date: Sun, 10 Nov 2024 16:50:35 -0500 Subject: [PATCH] local steps readme --- README.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) 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