monolang/mkdocs-git: update
Added activation of python venv and comments.
This commit is contained in:
parent
4cecc81772
commit
0d93a954ee
1 changed files with 12 additions and 0 deletions
|
@ -1,6 +1,18 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
|
# Redirect standard error to standard output
|
||||||
exec 2>&1
|
exec 2>&1
|
||||||
|
|
||||||
|
# Activate the Python virtual environment
|
||||||
|
source ${VIRTUAL_ENV}/bin/activate
|
||||||
|
|
||||||
|
# Check if the /mkdocs/repo directory exists
|
||||||
|
# If it does not exist, clone the repository from the specified GIT_REPO_URL
|
||||||
find /mkdocs/repo || git clone $GIT_REPO_URL /mkdocs/repo
|
find /mkdocs/repo || git clone $GIT_REPO_URL /mkdocs/repo
|
||||||
|
|
||||||
|
# Change directory to the cloned repository and pull the latest changes
|
||||||
cd /mkdocs/repo && git pull
|
cd /mkdocs/repo && git pull
|
||||||
|
|
||||||
|
# Build mkdocs using the configuration file located at /mkdocs/repo/mkdocs.yml
|
||||||
|
# The output will be directed to /usr/share/nginx/html
|
||||||
exec mkdocs build -f /mkdocs/repo/mkdocs.yml -d /usr/share/nginx/html
|
exec mkdocs build -f /mkdocs/repo/mkdocs.yml -d /usr/share/nginx/html
|
Loading…
Add table
Add a link
Reference in a new issue