-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
29 lines (24 loc) · 888 Bytes
/
Makefile
File metadata and controls
29 lines (24 loc) · 888 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
build:
@mkdocs build
serve:
@mkdocs serve
docker-build:
@docker run -v "${PWD}:/docs" squidfunk/mkdocs-material:latest build
docker-serve:
@docker run -v "${PWD}:/docs" -p 8000:8000 squidfunk/mkdocs-material:latest
help:
@echo "*******************************"
@echo "Swerve Robotics Makefile Help"
@echo ""
@echo " make build: build the site locally"
@echo " Requirements: python, mkdocs, and mkdocs-material"
@echo ""
@echo " make serve: build the site and serve it locally"
@echo " Requirements: python, mkdocs, and mkdocs-material"
@echo ""
@echo " make docker-build: build the site in a docker container"
@echo " Requirements: docker"
@echo ""
@echo " make docker-serve: build the site and serve it from within the docker container"
@echo " Requirements: docker"
@echo "*******************************"