Skip to content

Latest commit

 

History

History
41 lines (31 loc) · 690 Bytes

INSTALLING.md

File metadata and controls

41 lines (31 loc) · 690 Bytes

Build steps

Installation

Install Python and Git on your device, then run

git clone https://github.com/AlphaJack/MBA
cd MBA
python -m venv .venv
source .venv/bin/activate
python -m pip install -r requirements.txt

Apply changes

cd MBA
source .venv/bin/activate
python -m mkdocs serve

The website should now be visible from http://127.0.0.1:8000/MBA/, and will reflect changes to the source files.

Save changes

cd MBA
git add -A
git commit -m "Meaningful changelog"
git push

Publish a new version

cd MBA
source .venv/bin/activate
python -m mkdocs gh-deploy