Skip to content

Latest commit

 

History

History
47 lines (32 loc) · 976 Bytes

README.md

File metadata and controls

47 lines (32 loc) · 976 Bytes

Development

Section hierarchy

#########
Heading 1
#########

*********
Heading 2
*********

Heading 3
=========

Heading 4
---------

Heading 5
^^^^^^^^^

On MacOS I recommend to use Brew for installing Python3.

brew install [email protected]

Setup a Python virtual environment.

pip install virtualenv
virtualenv -p python3.8 venv
source venv/bin/activate
pip install -r requirements.txt

Then if there are no errors, run:

make livehtml

Travis-CI docs for Building a Python Project and GitHub Pages Deployment. Personal access token with 'public_repo - Access public repositories' permissions created and used it in travis encrypt GH_TOKEN=my_github_token --add env.matrix as described in the Travis-CI docs.