Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/victoire/vacuumbundle

Converts a wordpress dump into Victoire pages
https://github.com/victoire/vacuumbundle

importer victoire wordpress

Last synced: about 2 months ago
JSON representation

Converts a wordpress dump into Victoire pages

Awesome Lists containing this project

README

        

# VacuumBundle

The VacuumBundle offer an Implementation for the import of external data
to populate a new or an existing Victoire Blog.

## Installation

Install it with composer:

php composer.phar require victoire/vacuum-bundle

Then add it to your AppKernel:

class AppKernel extends Kernel
{
public function registerBundles()
{
$bundles = array(
...
new Victoire\DevTools\VacuumBundle\VictoireVacuumBundle(),
);

return $bundles;
}
}

Finally update your schema:

php bin/console doctrine:schema:update --force

#### Import available

| Source | Format |
|-----------|--------|
| WordPress | XML |

### Doc

1. [Basic usage](doc/basic_usage.md)
1. [How it Works](doc/how_it_works.md)