Basic
Install CorePulse
Step 1: Get the Bundle
Run the command below
composer require corepulse/corepulse-bundle
note: if you get some error messages, try run with latest version
composer require corepulse/corepulse-bundle 1.0.beta
Step 2: Enable the Bundle
Adding below codes to config/bundles.php
<?php
return [
……
ValidatorBundle\ValidatorBundle::class => ['all' => true],
Rompetomp\InertiaBundle\RompetompInertiaBundle::class => ['all' => true],
Pentatrion\ViteBundle\PentatrionViteBundle::class => ['all' => true],
CorepulseBundle\CorepulseBundle::class => ['all' => true],
];
Step 3: Install Bundle
Run the command below
./bin/console pimcore:bundle:install CorepulseBundle
note: if you get some error messages, try uninstall this bundle firstly
Step 4: Config Firewall
Open file config/packages/security.yaml
...then add below code
security:
firewalls:
…………
corepulse_cms: '%corepulse_admin.firewall_settings%'
... and add below code in access_control section
security:
access_control:
- { path: ^/cms/login, roles: PUBLIC_ACCESS }
- { path: ^/cms, roles: ROLE_COREPULSE_USER }
Step 5: Initial config in the Admin Page & DONE 🚀
Reload the Admin Page, find the CorePulse config in left Sidebar and set the Corepulse Super Admin user
Don’t forget to config Appearance & Data Setup
Afterward, you can start using your new Pimcore CMS at [domain]/cms