kubernetes-guide/Makefile

16 lines
310 B
Makefile
Raw Permalink Normal View History

2023-10-13 13:37:29 +08:00
SHELL := /bin/bash
start:
npm run start
install:
npm install
outdated:
npm outdated
init: install
git clone --depth=1 git@gitee.com:imroc/kubernetes-guide.git build
gen:
npx docusaurus build --out-dir=./build/out
push:
2023-10-13 16:26:33 +08:00
cd build && git add -A && git commit -m update && git push
update: install gen push