Using Pelican to update existing PyRVA website
python -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
Reset output starting from a clean slate
make clean
generate the html
make html
deploy a test server
make serve
[!note] I hard mapped the port to 5001 in the pelicanconf.py as it conflicts with another service I run on the default port. You should be able to run -port port number with the make command but I am lazy. Iono willing to discuss with team if there is any heartburn here.