forked from streamlit/docs
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmakefile
More file actions
31 lines (24 loc) · 440 Bytes
/
makefile
File metadata and controls
31 lines (24 loc) · 440 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
30
31
.PHONY: all
all:
npm i
.PHONY: up
up:
npm run dev
.PHONY: start
start:
npm run start
.PHONY: export
export:
npm run export
.PHONY: lint
lint:
npm run lint
.PHONY: search
search:
node ./scripts/build-search-index.js
.PHONY: docstrings_image
docstrings_image:
cd python && docker build -t streamlit-docstring-generator .
.PHONY: docstrings
docstrings: docstrings_image
docker-compose -f python/compose.yml -p streamlit-docs up