1
0
Fork 0
mirror of https://github.com/vinta/awesome-python.git synced 2024-11-13 11:16:10 -05:00
python/Makefile

13 lines
232 B
Makefile
Raw Normal View History

2018-04-10 14:11:11 -04:00
site_install:
pip install mkdocs==0.16.3
pip install mkdocs-material==1.12.2
2018-04-10 14:11:11 -04:00
site_link:
ln -sf $(CURDIR)/README.md $(CURDIR)/docs/index.md
2015-06-09 07:19:41 -04:00
2018-04-10 14:11:11 -04:00
site_preview: site_link
mkdocs serve
2018-04-10 14:11:11 -04:00
site_deploy: site_link
mkdocs gh-deploy --clean