Add basic Mkdocs config and initial docs.
This commit is contained in:
parent
95ce7ef880
commit
91c581e678
8 changed files with 133 additions and 0 deletions
10
docs/scripts/install.sh
Executable file
10
docs/scripts/install.sh
Executable file
|
@ -0,0 +1,10 @@
|
|||
#! /bin/sh
|
||||
|
||||
echo "Updating Apt."
|
||||
apt-get update > /dev/null
|
||||
echo "Ensuring Pip is installed."
|
||||
DEBIAN_FRONTEND=noninteractive apt-get install -y -qq python-pip > /dev/null
|
||||
echo "Updating Pip."
|
||||
pip install pip -q -q --upgrade > /dev/null
|
||||
echo "Ensuring Mkdocs is installed."
|
||||
pip install -q mkdocs > /dev/null
|
Loading…
Add table
Add a link
Reference in a new issue