netresearch / akeneo-bootstrap
Bootstrap Akeneo before run
Requires
- symfony/console: ^2.7
Replaces
This package is auto-updated.
Last update: 2024-10-27 09:15:11 UTC
README
This is
- The composer package netresearch/akeneo-bootstrap to bootstrap Akeneo projects and configure them from other packages rather than via their own config files (better updatability).
- The Docker image netresearch/akeneo-app providing a ready built Akeneo PIM project, ready to run with MongoDB and optimized for best possible updatability utilizing akeneo-bootstrap.
Contents
Composer package
The common way to install Akeneo is to create a composer project from akeneo/pim-community-standard which has major drawbacks:
- Akeneo still didn't publish its core package to packagist which thus needs to be provided as composer repository. As the corresponding github repository has tons of branches and tags using it for composer is firstly damn slow and secondly makes composer reach the github API limits which can hardly be handled in any environment where you don't want to expose your github API key. Also there is no way for other packages to require akeneo/pim-community-dev as long as the github repository is not added in the root composer.json.
composer create-project
naturally creates the project once - if you want to update to a newer version of the original project there is no easy way to this with composer. Rather you'll be forced to update the copied sources following the upgrade instructions which is - at least for us - not what we would- If you need to change Akeneo configs, routings or add Bundles you have to touch the code generated by
composer create-project
which makes updating even harder.
You could also download a ready built Akeneo project - the updating issues however remain.
This package provides a mechanism to work around the problems above:
- It provides the plain shell script akeneo-project to create or upgrade an Akeneo project.
- It provides the command line application akeneo-bootstrap which generates configuration in the project from according instructions in installed packages and sets Akeneo up for running.
It replaces incenteev/parameter-handler which is registered for composers post-install-cmd and post-update-cmd and thus is invoked automatically to generate the AppKernel, configs and routings when packages are installed (steps 1 - 4 of akeneo-bootstrap command).
akeneo-project
Use the akeneo-project
script to create or upgrade an Akeneo project. It also installs netresearch/akeneo-bootstrap into the project (which automatically invokes 1 - 4 of the akeneo-bootstrap command).
Installation
The script is standalone but as it requires PHP and composer anyway you better install it with composer:
composer global require netresearch/akeneo-bootstrap akeneo-project -h
Creating a project
akeneo-project create -v 1.7.6
Up/downgrading a project
akeneo-project upgrade -v 1.7.6
akeneo-bootstrap
The akeneo-bootstrap
command is shipped with the composer package netresearch/akeneo-bootstrap
which is also installed by akeneo-project. It executes the following steps:
- Generate the AppKernel (overriding, not replacing the original Akeneo AppKernel) with bundles required by any installed packages
- Generate (local) config and routing files invoking resources required by any installed packages
- Generate the parameters.yml from environment variables
- Fix PIM, ORO and Symfony requirements (adjust paths)
- Clear cache if required by any of the previous steps
- Boot the kernel
- Wait for the database to be up
- Ensure the Akeneo installation (check requirements, install / upgrade DB, dump assets)
- Set export/import paths
- Link static directories if required (Akeneo sometimes doesn't use the configured directories but fixed paths like
app/logs
- this step symlinks those directories to the configured ones like LOG_DIR) - chown the directories required to be writable from web (see WEB_USER)
Environment variables
akeneo-bootstrap uses the following environment variables to configure Akeneo:
The configuration via environment variables was chosen because the package is primarily targeted at installations in Docker containers. If you don't use such and don't want to clutter your environment variables with the above, you could put them into an .env file and run akeneo-bootstrap and composer commands like this:
eval $(cat .env) composer update
Customizing Akeneo from other packages
akeneo-bootstrap will scan all installed packages for settings in their composer.json allowing you to register Bundles, configs, routings and custom bootstrap steps to customize Akeneo like so:
{ "name": "acme/akeneo-config", "version": "1.0.0", "require": { "akeneo-labs/custom-entity-bundle": "1.10.*" }, "extra": { "netresearch/akeneo-bootstrap": { "generate": [ "Acme\\AkeneoConfig\\Bootstrap\\Generate" ], "boot": [ "Acme\\AkeneoConfig\\Bootstrap\\Boot" ], "bundles": [ { "class": "Pim\\Bundle\\CustomEntityBundle\\PimCustomEntityBundle" } ], "routing": { "pim_customentity": { "resource": "@PimCustomEntityBundle/Resources/config/routing.yml", "prefix": "/reference-data" } } } } }
After installing or updating this package akeneo-bootstrap will automatically update the Kernel and local configuration and routing files to add the configured resources.
Please note that changes to this composer.json files only take effect when the package is actually updated or installed - if you only change it in the vendor package nothing will happen.
Adding bundles
Bundles are to be registered as objects in an array in extra.netresearch/akeneo-bootstrap.bundles
in your composer.json. Each of them must have a class
property containing the bundle class and can have a env
property containing an array of or an comma separated string with environment names:
{ "name": "acme/akeneo-config", "version": "1.0.0", "extra": { "netresearch/akeneo-bootstrap": { "bundles": [ { "class": "Acme\\Bundle\\AllEnvsBundle" }, { "class": "Acme\\Bundle\\ProdOnlyBundle", "env": "prod" }, { "class": "Acme\\Bundle\\DevAndTestOnlyBundle", "env": ["dev", "test"] } ] } } }
Note that all packages are scanned for this. This allows you to require a single package in the project which requires other packages that contain such configuration as well.
Adding configs
Config files are to be registered as objects in an array in extra.netresearch/akeneo-bootstrap.config
in your composer.json. Each of them must have a resource
property containing the file path and can have a env
property containing an array of or an comma separated string with environment names:
{ "name": "acme/akeneo-config", "version": "1.0.0", "extra": { "netresearch/akeneo-bootstrap": { "config": [ { "resource": "../../vendor/acme/akeneo-config/Resources/config/general.yml" }, { "resource": "../../vendor/acme/akeneo-config/Resources/config/prod.yml", "env": "prod" }, { "resource": "../../vendor/acme/akeneo-config/Resources/config/dev.yml", "env": ["dev", "test"] } ] } } }
Adding routings
Routing files are to be registered as objects in an object in extra.netresearch/akeneo-bootstrap.routing
in your composer.json. Each of them must have a resource
property containing the file path and can have a env
property containing an array of or an comma separated string with environment names. The keys are the keys under which they are registered in the routing_local.yml's:
{ "name": "acme/akeneo-config", "version": "1.0.0", "extra": { "netresearch/akeneo-bootstrap": { "routing": { "all_envs": { "resource": "@AllEnvsBundle/Resources/config/routing.yml" }, "prod": { "resource": "../../vendor/acme/akeneo-config/Resources/config/routing_prod.yml", "env": "prod" }, "test": { "resource": "../../vendor/acme/akeneo-config/Resources/config/routing_dev.yml", "env": ["dev", "test"] } } } } }
Adding custom bootstraps
There are two scopes of bootstraps: generate (Akeneo/DB not necessarily initialized; invoked after composer update/install
and from ./bin/akeneo-bootstrap
) and boot (Akeneo/DB ready to run, invoked only from ./bin/akeneo-bootstrap
right after generate
). Custom bootstrap classes can be registered for each of those scopes as array of class names in extra.netresearch/akeneo-bootstrap.{SCOPE}
in your composer.json. Each of those classes have to implement \Netresearch\AkeneoBootstrap\Bootstrap\BootstrapInterface
.
{ "name": "acme/akeneo-config", "version": "1.0.0", "extra": { "netresearch/akeneo-bootstrap": { "generate": [ "Acme\\AkeneoConfig\\Bootstrap\\Generate" ], "boot": [ "Acme\\AkeneoConfig\\Bootstrap\\Boot" ] } } }
A bootstrap could for instance look like this:
<?php namespace Acme\AkeneoConfig\Bootstrap; use \Netresearch\AkeneoBootstrap\Bootstrap\BootstrapAbstract; class Generate extends BootstrapAbstract { public function getMessage() { return 'Forcing cache to be cleared' . ' (cache dir: ' . $this->getKernel()->getCacheDir() . ')'; } public function run() { $this->isCacheClearRequired(true); } }
Have a look at the present bootstraps for further examples.
Docker image
The Docker image netresearch/akeneo-app is an alpine image containing an Akeneo project setup with akeneo-project in /var/www/html
and the akeneo-project
script itself in /opt/akeneo-bootstrap/bin/akeneo-project
.
When this image is used with netresearch/akeneo-php:apache or netresearch/akeneo-php with akeneo-php-entrypoint
set as entrypoint akeneo-bootstrap will automatically be invoked on container start.
Run
This image only contains source files. To run Akeneo with it, PHP, a MySQL/MariaDB database and - both optionally an Apache and a MongoDB - are required.
Akeneo has several PHP platform dependencies which is why we recommend using our Akeneo specialized PHP Docker images for that (available as PHP only and PHP+Apache).
It's best to run it using docker-compose. See here for an example.
In order to develop with Akeneo, you can additionally use this docker-compose.override.yml along with a Dockerfile like the one below.
Environment variables
As those for akeneo-bootstrap.
Customize Akeneo
This image provides a ready built Akeneo project (composer install
already done) which is not meant to be customized by hacking around in its configuration and kernel - it rather uses netresearch/akeneo-bootstrap to be customizable by other packages.
To install your own packages you should extend this image with a custom docker file - we suggest following multistage build file to keep the resulting image small:
FROM netresearch:akeneo-app as sources FROM netresearch:akeneo-php as builder COPY --from=sources /var/www/html /var/www/html WORKDIR /var/www/html # You can use private packages by adding them into # /src/packages/{vendor}/{packagename} # THOSE PACKAGES NEED TO HAVE A version TO BE SET IN THEIR composer.json # see above for further information COPY ./packages/acme/akeneo-config /src/packages/acme/akeneo-config RUN composer require acme/akeneo-config FROM alpine COPY --from=builder /src/packages /src/packages COPY --from=builder /var/www/html /var/www/html # If you will mount a local directory to /var/www/html # which is what you'll likely do during development # it is a good idea to also copy akeneo-project # (see docker-compose.override.yml for how to invoke) COPY --from=sources /usr/local/bin/akeneo-project /opt/akeneo-bootstrap/bin/akeneo-project
GitHub
If you have any problems, questions, feature requests or simply stars to give please visit the GitHub repository.