Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/bobdenotter/conimex
- Owner: bobdenotter
- License: mit
- Created: 2020-01-16T13:52:44.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2023-08-14T15:38:22.000Z (about 1 year ago)
- Last Synced: 2024-10-14T06:09:41.365Z (24 days ago)
- Language: PHP
- Homepage:
- Size: 121 KB
- Stars: 6
- Watchers: 2
- Forks: 14
- Open Issues: 18
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```