local steps readme

This commit is contained in:
mik-tf 2024-11-10 16:50:35 -05:00
parent 3a6a564061
commit f86c0a2a2b

View File

@ -6,6 +6,7 @@
- [Install the Website](#install-the-website) - [Install the Website](#install-the-website)
- [Start the Website](#start-the-website) - [Start the Website](#start-the-website)
- [With Hero Docker (Optional)](#with-hero-docker-optional) - [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 pull logismosis/hero:latest
docker run -it --net=host --name=hero-container -v ~/code:/root/code 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
``` ```