Skip to content

Commit

Permalink
update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
krish-adi committed Oct 22, 2021
1 parent d9c8d46 commit ed3cae3
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
11 changes: 8 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@ all: clean
serve-dev:
npm run --prefix ./frontend serve & python ./tests/test_server/test.py &

# @cd frontend ; npm run build

.PHONY: build-frontend
build-frontend:
cd frontend && npm run build
Expand All @@ -23,11 +21,18 @@ build-package:
run-unit-tests:
pytest library/tests/unit_tests

# Sphinx should be installed before doing this
.PHONY: build-docs
build-docs:
cd docs && make html

.PHONY: live-build-docs
build-docs:
cd docs && make livehtml

.PHONY: serve-docs
serve-docs:
cd docs/build/html && open ./index.html

.PHONY: clean
clean:
echo "To be implemented..."
2 changes: 1 addition & 1 deletion docs/source/mental-model.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,4 +100,4 @@ gpo.line_chart(
y=y,
)

```
```

0 comments on commit ed3cae3

Please sign in to comment.