File: make_docs.sh

package info (click to toggle)
ubelt 1.4.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,180 kB
  • sloc: python: 15,487; sh: 807; makefile: 24
file content (17 lines) | stat: -rwxr-xr-x 367 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/bash
__heredoc__="""
Requirements:
     pip install -r docs/requirements.txt
     sphinx

Notes:
    cd ~/code/ubelt/docs
    make html
    sphinx-apidoc -f -o ~/code/ubelt/docs/source ~/code/ubelt/ubelt --separate
    make html

    cd ~/code/sphinx
    github-add-fork source https://github.com/sphinx-doc/sphinx.git
"""

(cd ~/code/ubelt/docs && make html)