Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/bobdenotter/conimex

🍛 Content Importer and Exporter (as YAML) for Bolt 4
https://github.com/bobdenotter/conimex

Last synced: 11 days ago
JSON representation

🍛 Content Importer and Exporter (as YAML) for Bolt 4

Awesome Lists containing this project

README

        

# Conimex: Content Importer and Exporter

Author: Bob den Otter

Extension to export your bolt content as YAML, and import it again.

## Installation:

```bash
composer require bobdenotter/conimex
```

## Usage:

Exporting:

```bash
bin/console conimex:export websitename.yaml
```

To export a single Content Type, for example `pages`, use:

```bash
bin/console conimex:export websitename.yaml --contenttype=pages
```

To export a single Content Type as a CSV, use:

```bash
bin/console conimex:export websitename.csv --contenttype=pages
```

Importing:

```bash
bin/console conimex:import websitename.yaml
```

## Running PHPStan and Easy Codings Standard

First, make sure dependencies are installed:

```
COMPOSER_MEMORY_LIMIT=-1 composer update
```

And then run ECS:

```
vendor/bin/ecs check src
```