Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,18 @@ bucket?=
distribution?=

install:
pip install mkdocs mkdocs-material --upgrade --user
ifdef CONTINUOUSPHP
sudo apt-get update -y
sudo apt-get install -y python3 python3-pip
endif
sudo pip3 install mkdocs==1.0.4 mkdocs-material==3.1.0

build:
ifdef CONTINUOUSPHP
rm -rf .git
endif
export LC_ALL=C.UTF-8
export LANG=C.UTF-8
mkdocs build -d dist

deploy:
Expand Down
10 changes: 6 additions & 4 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ theme:
primary: 'indigo'
accent: 'light green'
# Copyright
copyright: 'Copyright © 2017 - 2018 Continuous SA'
copyright: 'Copyright © 2017 - 2019 Continuous SA'
# Options
extra:
social:
Expand All @@ -22,11 +22,13 @@ extra:
# Extensions
markdown_extensions:
- admonition
- codehilite(guess_lang=false)
- toc(permalink=true)
- codehilite:
guess_lang: false
- toc:
permalink: true
- meta
# Navigation
pages:
nav:
- INTRODUCTION: index.md
- GIT REPOSITORY HOSTING SERVICES:
- GIT REPOSITORY HOSTING SERVICES: vcs.md
Expand Down