This Engineering Manual serves as a repository of a company's Engineering culture.
To build this project, we will use Python 3 and virtualenv
-
Check if you have Python 3 installed
python3
-
If you see a message like
command not found: python3
and do not have Python 3 installedbrew install python3
-
Find out where Python 3 was installed
which python
-
If the path printed out is not
/usr/bin/python3
, replace that text below with your pathmkvirtualenv --python=/usr/bin/python3 mkdocs
-
Install requirements
pip install -r requirements.txt
-
To open in your browser
mkdocs serve -a localhost:8080 --livereload
-
To deploy:
sh deploy.sh
GitHub Actions builds this site on merges to master, deploy docs above are less necessary now.
This project is built with the tool MkDocs documentation.