This is the Web Page for Durango Retro. It's Built with MkDocs.
To Run this web in Local you need to install Mkdocs first. Mkdocs is a Python Package so you need to install Python and Pip first (python 3.7 or later).
pip install mkdocs mkdocs-material
later, you can run the web using the next command:
mkdocs serve
Now you can open your browser and see the url http://localhost:8000
You can use Pipenv to run this web:
First, install pipenv:
pip install pipenv
after install pipenv, install the dependencies:
pipenv install
Later, run mkdocs using pipenv:
pipenv run mkdocs serve
To Generate and upload to github Pages only you need to do is:
- Checkout last version of
gh-pages
branch. - return to master branch
- Run next command
pipenv run mkdocs gh-deploy