This repository is not maintained anymore ! If you need to build our documentation from the source, please use : docs-rendering
Easy to deploy developer environment, for writing/testing guides & documentations for docs.ovh.com
- Docker installed
Show help
./build.sh -h
> build.sh [-h] [-f folder] [-p port] build and start docs.ovh.com in a docker container
>
> where:
> -h show this help
> -f set the docs repo path to build (default: current directory)
> -p set the exposed docker port (default: 8080)
Start the build
./build.sh -f /path/to/docs
Next, go to http:///localhost:8080/fr/
First, build the docker image
git clone https://github.com/ovh/docs-developer-env.git
cd docs-developer-env
docker build -t ovh-docs-dev-env .
Second, run docker container
# get the ovh docs repository
git clone https://github.com/ovh/docs.git
cd docs
# run the container and mount volume "pages" (change the port to suit your needs, here XXXXX)
# the port 8080 is the exposed one, so don't change it
docker run --rm -v $(pwd)/pages:/src/docs/pages -d --name ovh-docs-dev-env -p XXXXX:8080 ovh-docs-dev-env
Note : the pelican build, started in debug mode, takes 1 or 2 minutes to complete.
Check the logs.
docker logs -f ovh-docs-dev-env
When the build is complete, go to http://localhost:XXXXX/fr/ and check your works.
Third, stop the container
docker stop ovh-docs-dev-env
Use this method only if docker is not an option or for local development
- First, checkout the following repositories
git clone https://github.com/ovh/docs-developer-env.git
git clone https://github.com/ovh/docs-rendering.git
- Then, you'll need to prepare and install the dependencies
cd docs-rendering
python3 -m venv venv3 # create a virtualenv
. venv3/bin/activate # enter the virtualenv
pip install -r requirements.txt # install dependencies
mkdir output # prepare the destination directory
Option 1: full documentation
cd .. && git clone https://github.com/ovh/docs.git; cd -
ln -sf ../docs/pages . # prepare the source directory
Option 2: local guide edition
cp -r ../docs-developer-env/stub/ pages # copy a minimal set of file to get you started
- Finally, without changing of directory
../docs-developer-env/src/entrypoint.sh # start pelican and the web-server
and navigate to http://localhost:8080/