mirror of
https://github.com/vinta/awesome-python.git
synced 2024-11-24 04:21:07 +00:00
13 lines
232 B
Makefile
13 lines
232 B
Makefile
site_install:
|
|
pip install mkdocs==0.16.3
|
|
pip install mkdocs-material==1.12.2
|
|
|
|
site_link:
|
|
ln -sf $(CURDIR)/README.md $(CURDIR)/docs/index.md
|
|
|
|
site_preview: site_link
|
|
mkdocs serve
|
|
|
|
site_deploy: site_link
|
|
mkdocs gh-deploy --clean
|