pimcore / demo
Demo Application for Pimcore 6
Installs: 78 574
Dependents: 0
Suggesters: 0
Security: 1
Stars: 100
Watchers: 17
Forks: 105
Open Issues: 11
Type:project
Requires
- gotenberg/gotenberg-php: ^1.1 || ^2.0
- php-http/guzzle7-adapter: ^0.1.1
- php-http/httplug-bundle: ^1
- pimcore/admin-ui-classic-bundle: *
- pimcore/customer-management-framework-bundle: *
- pimcore/data-hub: *
- pimcore/ecommerce-framework-bundle: *
- pimcore/newsletter-bundle: *
- pimcore/payment-provider-paypal-smart-payment-button: ^2.0
- pimcore/pimcore: *
- pimcore/platform-version: ^2024.3
- pimcore/web-to-print-bundle: *
- pimcore/web2print-tools-bundle: *
- symfony/dotenv: ^6.2
- symfony/intl: ^6.2
- symfony/runtime: ^6.2
Suggests
- pimcore/elasticsearch-client: Required for Elastic Search service
- 2024.x-dev
- 2024.3.x-dev
- v2024.3.0
- v2024.2.3
- v2024.2.2
- v2024.2.1
- v2024.2.0
- v11.1.5
- v11.1.4
- v11.1.3
- v11.1.2
- v11.1.1
- v11.1.0
- v11.0.7
- v11.0.6
- v11.0.5
- v11.0.4
- v11.0.3
- v11.0.2
- v11.0.1
- v11.0.0
- v11.0.0-RC2
- v11.0.0-RC1
- v11.0.0-BETA1
- v11.0.0-ALPHA8
- v11.0.0-ALPHA7
- v11.0.0-ALPHA6
- v11.0.0-ALPHA5
- v11.0.0-ALPHA4
- v11.0.0-ALPHA3
- v11.0.0-ALPHA2
- v11.0.0-ALPHA1
- v10.3.5
- v10.3.4
- v10.3.3
- v10.3.2
- v10.3.1
- v10.3.0
- v10.2.6
- v10.2.5
- v10.2.4
- v10.2.3
- v10.2.2
- v10.2.1
- v10.2.0
- v10.1.17
- v10.1.16
- v10.1.15
- v10.1.14
- v10.1.13
- v10.1.12
- v10.1.11
- v10.1.10
- v10.1.9
- v10.1.8
- v10.1.7
- v10.1.6
- v10.1.5
- v10.1.4
- v10.1.3
- v10.1.2
- v10.1.1
- v10.1.0
- v10.0.13
- v10.0.12
- 10.0.11
- v10.0.10
- v10.0.9
- v10.0.8
- v10.0.7
- v10.0.6
- v10.0.5
- v10.0.4
- v10.0.2
- v10.0.1
- v10.0.0
- v1.6.24
- v1.6.23
- v1.6.22
- v1.6.21
- v1.6.20
- v1.6.19
- v1.6.18
- v1.6.17
- v1.6.16
- v1.6.15
- v1.6.14
- v1.6.13
- v1.6.12
- v1.6.11
- v1.6.10
- v1.6.9
- v1.6.8
- v1.6.7
- v1.6.6
- v1.6.5
- v1.6.4
- v1.6.3
- v1.6.2
- v1.6.1
- v1.6.0
- v1.5.3
- v1.5.2
- v1.5.1
- v1.5.0
- v1.4.10
- v1.4.9
- v1.4.8
- v1.4.7
- v1.4.6
- v1.4.5
- v1.4.4
- v1.4.3
- v1.4.2
- v1.4.1
- v1.4.0
- v1.3.3
- v1.3.2
- v1.3.1
- v1.3.0
- v1.2.5
- v1.2.4
- v1.2.3
- v1.2.2
- v1.2.1
- v1.2.0
- v1.1.6
- v1.1.5
- v1.1.4
- v1.1.3
- v1.1.2
- v1.1.1
- v1.1.0
- v1.0.2
- v1.0.1
- v1.0.0
- dev-workaround-create-project
- dev-createproject
This package is auto-updated.
Last update: 2024-10-28 09:29:24 UTC
README
This demo package is intended to be used by Pimcore newcomers who want to learn Pimcore and see it in action. It's tailored get an overview of Pimcores CMS, DAM, PIM and E-Commerce functionality and can be used as a blue print for E-Commerce Applications built with Pimcore. If you are an experienced Pimcore developer, have a look at the Skeleton linked below instead.
Getting started
COMPOSER_MEMORY_LIMIT=-1 composer create-project pimcore/demo my-project
cd ./my-project
./vendor/bin/pimcore-install
- Point your virtual host to
my-project/public
- [Only for Apache] Create
my-project/public/.htaccess
according to https://pimcore.com/docs/platform/Pimcore/Installation_and_Upgrade/System_Setup_and_Hosting/Apache_Configuration/ - Open https://your-host/admin in your browser
- Done! 😎
Docker
You can also use Docker to setup a new Pimcore Installation. You don't need to have a PHP environment with composer installed.
Prerequisits
- Your user must be allowed to run docker commands (directly or via sudo).
- You must have docker-compose installed.
- Your user must be allowed to change file permissions (directly or via sudo).
Follow these steps
- Initialize the demo project using the
pimcore/pimcore
imagedocker run -u `id -u`:`id -g` --rm -v `pwd`:/var/www/html pimcore/pimcore:php8.3-latest composer create-project pimcore/demo my-project
- Go to your new project
cd my-project/
- Part of the new project is a docker compose file
- Run
echo `id -u`:`id -g`
to retrieve your local user and group id - Open the
docker-compose.yaml
file in an editor, uncomment all theuser: '1000:1000'
lines and update the ids if necessary - Start the needed services with
docker compose up -d
- Run
- Install pimcore and initialize the DB
docker compose exec php vendor/bin/pimcore-install --mysql-host-socket=db --mysql-username=pimcore --mysql-password=pimcore --mysql-database=pimcore
- When asked for admin user and password: Choose freely
- This can take a while, up to 20 minutes
- ✔️ DONE - You can now visit your pimcore-demo:
- The frontend: http://localhost
- The admin interface, using the credentials you have chosen above: http://localhost/admin
Pimcore Platform Version
By default, Pimcore Platform Version is added as a dependency which ensures installation of compatible and in combination with each other tested versions of additional Pimcore modules. More information about the Platform Version can be found in the Platform Version docs.
It might be necessary to update a specific Pimcore module to a version that is not included in the Platform Version.
In that case, you need to remove the platform-version
dependency from your composer.json
and update the module to
the desired version.
Be aware that this might lead to a theoretically compatible but untested combination of Pimcore modules.