mirror of
https://github.com/vinta/awesome-python
synced 2024-11-15 00:07:24 +00:00
14 lines
237 B
Makefile
14 lines
237 B
Makefile
site_install:
|
|
pip install -r requirements.txt
|
|
|
|
site_link:
|
|
ln -sf $(CURDIR)/README.md $(CURDIR)/docs/index.md
|
|
|
|
site_preview: site_link
|
|
mkdocs serve
|
|
|
|
site_build: site_link
|
|
mkdocs build
|
|
|
|
site_deploy: site_link
|
|
mkdocs gh-deploy --clean
|