Skip to content

Commit

Permalink
update installation docs
Browse files Browse the repository at this point in the history
  • Loading branch information
dpfaffenbauer committed Jul 1, 2017
1 parent 5a6b452 commit ae797e7
Showing 1 changed file with 26 additions and 1 deletion.
27 changes: 26 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,35 @@ Process Manager Plugin keeps track of all your "long running jobs". It adds a ni
- [ImportDefinitions](https://github.com/w-vision/ImportDefinitions)

## Getting started
* Since Process-Manager depends on CoreShops ResourceBundle, and the ResourceBundle only exists in DEV yet, you need to set your "minimum-stability" to "dev" in your composer.json
* Install via composer ```composer require dpfaffenbauer/process-manager dev-master```
* Load needed Bundles:
```php
<?php

// app/AppKernel.php
public function registerBundlesToCollection(BundleCollection $collection)
{
$collection->addBundles(array(
new \JMS\SerializerBundle\JMSSerializerBundle(),
new \CoreShop\Bundle\ResourceBundle\CoreShopResourceBundle(),
new \FOS\RestBundle\FOSRestBundle(),
new \Doctrine\Bundle\DoctrineCacheBundle\DoctrineCacheBundle(),
new \Stof\DoctrineExtensionsBundle\StofDoctrineExtensionsBundle()
), 120);
}
```
* Load config file:
```yml
#app/config.yml
imports:
- { resource: "@CoreShopResourceBundle/Resources/config/app/config.yml" }
```
* Open Extension Manager in Pimcore and enable/install Plugin
* It sometimes happens to me that assets are not getting installed right from pimcore, therefore run ```bin/console assets:install --symlink```
* Install via CLI ```bin/console coreshop:resources:install --application-name process_manager``` or within Pimcore Extension Manager
* After Installation within Pimcore Extension Manager, you have to reload Pimcore
* Open Settings -> Process Manager
* Open Tools -> Process Manager

## Integrate to your Task

Expand Down

0 comments on commit ae797e7

Please sign in to comment.