2024-02-11
This commit is contained in:
parent
579ff09f0f
commit
d654ae6731
29 changed files with 5392 additions and 0 deletions
38
bin/variables.sh
Normal file
38
bin/variables.sh
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
# ------------------------------------------------------------------------------
|
||||
# This file is sourced by the scripts in the same directory.
|
||||
# ------------------------------------------------------------------------------
|
||||
|
||||
PROJECT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )/.." && pwd )"
|
||||
|
||||
|
||||
|
||||
# The name of the project
|
||||
# shellcheck disable=SC2155
|
||||
export DDIDIER_SPHINX_PROJECT_NAME="$(basename "${PROJECT_DIR}")"
|
||||
|
||||
# The files Sphinx Live HTML must ignore
|
||||
export DDIDIER_SPHINX_PROJECT_IGNORED_FILES=(
|
||||
"*.bak"
|
||||
"*.tmp"
|
||||
)
|
||||
|
||||
|
||||
|
||||
# The version of the Docker image ddidier/sphinx-doc
|
||||
export DDIDIER_SPHINX_IMAGE_VERSION="4.1.2-1"
|
||||
|
||||
# The name of the container Sphinx is running in
|
||||
export DDIDIER_SPHINX_CONTAINER_NAME="${DDIDIER_SPHINX_PROJECT_NAME}"
|
||||
|
||||
# The network interface on the host machine the container is bound to
|
||||
export DDIDIER_SPHINX_CONTAINER_EXPOSED_INTERFACE=127.0.0.1
|
||||
|
||||
# The port on the host machine the container is listening to
|
||||
export DDIDIER_SPHINX_CONTAINER_EXPOSED_PORT=8000
|
||||
|
||||
# Generated by ddidier/sphinx-doc
|
||||
# See https://hub.docker.com/r/ddidier/sphinx-doc
|
||||
# Docker image commit: 8e920a5e2e849c4ca2248afbbb9215235929c052
|
||||
# Docker image tag: 4.1.2-1
|
||||
Loading…
Add table
Add a link
Reference in a new issue