mirror of
https://github.com/emendir/EndraApp.git
synced 2026-01-09 22:37:44 -05:00
18 lines
494 B
Bash
Executable File
18 lines
494 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# the absolute paths of this script and it's directory
|
|
SCRIPT_DIR="$( cd -- "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )"
|
|
|
|
cd "$SCRIPT_DIR"
|
|
|
|
BUILD_DIR="${SCRIPT_DIR}/_build"
|
|
DOCS_DIR=$(realpath "$SCRIPT_DIR/..")
|
|
SRC_DIR=$(realpath "$SCRIPT_DIR/../../src")
|
|
OUTPUT_FULL="${DOCS_DIR}/html"
|
|
OUTPUT_API="${DOCS_DIR}/API-Reference"
|
|
|
|
# Path to the folder with stubs generated py sphinx-apidoc
|
|
SPHINX_CONF_DIR=${SCRIPT_DIR}/sphinx_config
|
|
API_REF_TEMPLATE=${SPHINX_CONF_DIR}/API-Reference
|
|
|