kestukas / akeneo
The "Akeneo Community Standard Edition" distribution
Installs: 0
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:project
Requires
- akeneo/pim-community-dev: ^5.0.0
- giedriusdilling/custom-entity-bundle: dev-main
- trilix/akeneo-events-api-bundle: ^0.7.0
Requires (Dev)
- doctrine/doctrine-migrations-bundle: 1.3.2
- symfony/debug-bundle: ^4.4.7
- symfony/web-profiler-bundle: ^4.4.7
- symfony/web-server-bundle: ^4.4.7
This package is auto-updated.
Last update: 2025-03-29 01:03:21 UTC
README
Welcome to Akeneo PIM.
This repository is used to create a new PIM project based on Akeneo PIM.
If you want to contribute to the Akeneo PIM (and we will be pleased if you do!), you can fork the repository https://github.com/akeneo/pim-community-dev and submit a pull request.
Installation instructions
Development Installation with Docker
Requirements
- Docker 19+
- docker-compose >= 1.24
- make
Creating a project and starting the PIM
The following steps will install Akeneo PIM in the current directory (must be empty) and launch it from there:
$ docker run -u www-data -v $(pwd):/srv/pim -w /srv/pim --rm akeneo/pim-php-dev:5.0 \ php -d memory_limit=4G /usr/local/bin/composer create-project --prefer-dist \ akeneo/pim-community-standard /srv/pim "5.0.*@stable"
$ make
The PIM will be available on http://localhost:8080/, with admin/admin
as default credentials.
To shutdown your PIM: make down
Installation without Docker
Requirements
- php 7.4
- composer 2.0
$ php -d memory_limit=4G /usr/local/bin/composer create-project --prefer-dist \
akeneo/pim-community-standard /srv/pim "5.0.*@stable"
You will need to change the .env
file to configure the access to your MySQL and ES server.
Once done, you can run:
$ NO_DOCKER=true make
For more details, please follow https://docs.akeneo.com/5.0/install_pim
Upgrade instructions
To upgrade Akeneo PIM to a newer version, please follow: https://docs.akeneo.com/5.0/migrate_pim/index.html
Changelog
You can check out the changelog files in https://github.com/akeneo/pim-community-dev.