The Akeneo PIM documentation
Install Docker.
From the ./pim-docs
directory, run:
$ docker build . --tag pim-docs:master
$ rm -rf pim-docs-build && mkdir pim-docs-build
$ docker run --rm \
-v $(pwd):/home/akeneo/pim-docs/data \
pim-docs:master \
./build.sh master --uid $(id -u) --gid $(id -g)
The docs will be built into ./pim-docs-build
.
Clone this repository.
Install Sphinx.
$ sudo apt-get install python-pip
$ sudo pip install --upgrade pip
$ sudo pip install sphinx~=1.5.3
$ sudo pip install git+https://github.com/fabpot/sphinx-php.git
$ sudo pip install git+https://github.com/mickaelandrieu/sphinxcontrib.youtube.git
$ brew install python
$ pip install sphinx
$ pip install git+https://github.com/fabpot/sphinx-php.git
$ pip install git+https://github.com/mickaelandrieu/sphinxcontrib.youtube.git
If you encounter the following error
ValueError: ('Expected version spec in', 'sphinx~=1.5.3', 'at', '~=1.5.3')
Usepip install --upgrade pip
before install sphinx
Download composer curl -s https://getcomposer.org/installer | php
and run php composer.phar install
.
From the ./pim-docs
directory, run:
$ sphinx-build -b html . ../pim-docs-build
The documentation will be generated inside ../pim-docs-build
.
From the ./pim-docs
directory, run:
$ sphinx-build -nWT -b linkcheck . _build/
Install pim-community.
Then, go to Akeneo PIM src/
directory and create a symlink Acme
pointing to pim-docs/src/Acme
.
Add all Acme bundles in app/AppKernel.php
file.
The needed files for Akeneo Styleguide are installed with the composer install
. When you build the documentation,
you will have an empty page /styleguide/index.html
. You have to add a RewriteRule on your Apache configuration
to redirect to /styleguide/index.php
:
RedirectMatch 301 /styleguide/index.html /styleguide/index.php
If you want to deploy all branches, use this script https://github.com/akeneo/dev-tools/blob/master/script-executor/app/scripts/generate-docs.sh.
If you want to deploy only your current branch, you can use the build.sh
script of this repository with the option --deploy
.
Don't hesitate to suggest cookbook ideas via https://github.com/akeneo/pim-docs/issues.
- The folder
/_themes/sphinx_rtd_theme
is a clone from https://github.com/snide/sphinx_rtd_theme, and was updated on 2016-07. If you want to customize the Akeneo theme, please only update/_theme/akeneo_rtd
theme.