blob: 40bcfbd6318405ba2dbe313399d51be313b408de [file] [log] [blame]
#!/bin/bash
# Script to build the HTML docs and serve them.
# Run within docker container for best results.
echo "Building MXNet documentation..."
make clean
make html
echo "Done building MXNet documentation..."
echo "Serving MXNet docs on port 8008..."
cd _build/html
python -m SimpleHTTPServer 8008