je

Jcr Exchange

CI status badge Crates.io version Code coverage License

About | Installation | Configuration | License | Contribution

Built with 🦀

About

Small utility for uploading/downloading content to/from running AEM instance.

It's intended to be used as an external tool for IntelliJ IDEA to make content synchronization easier.

```bash je 0.3.0 Jcr Exchange - easy download and upload files to and from JCR

USAGE: je [FLAGS] [OPTIONS]

FLAGS: -d, --debug If enabled, deployed to AEM packages are left intact (are not deleted) to allow investigation -h, --help Prints help information -V, --version Prints version information -v, --verbose Enables logs: -v - enables INFO log level -vv - enables DEBUG log level

OPTIONS: -p, --profile Profile selection

SUBCOMMANDS: get Downloads content to local file system get-bundle Downloads bundle (pack of crx paths) defined in config file help Prints this message or the help of the given subcommand(s) init Initializes configuration file put Uploads content to AEM instance reinit Rewrites the configuration file with newest version ```

Installation

Standard installation

Rust programmers

Install

bash cargo install je

Upgrade

bash cargo install --force je

Configuration

Default

Configuration file is not required. Without it, je will use default configuration. However, you can still initialize config and change it. The default configuration is also the initial one:

``` ❯ je init ❯ cat .je ignore_properties = []

[[profile]] name = "author" addr = "http://localhost:4502" user = "admin" pass = "admin" ```

Customize

Here is more complex configuration with description of its fields: ```toml ignore_properties = [{ type = "contains", value = "jcr:createdBy" }, { type = "regex", value = '.*=[]' }]

[[profile]] name = "author" addr = "http://localhost:4502" user = "admin" pass = "admin"

[[profile]] name = "publish" addr = "http://localhost:4503" user = "admin" pass = "admin"

[[bundle]] name = "configs" files = ["/apps/my-app/config", "/config/my-app"]

[[bundle]] name = "dam" paths = ["/content/dam/my-app/thumbnails", "/content/dam/my-app/files"] ```

:warning: If you used older version of je, then you can transform the configuration file to the new form. Details below.

Details je reinit will change:

```toml ignore_properties = ["jcr:created", "jcr:createdBy"]

# (...) to toml version = "0.3.0"

[[ignore_properties]] type = "contains" value = "jcr:created"

[[ignore_properties]] type = "contains" value = "jcr:createdBy"

# (...) which is equivalent to: toml version = "0.3.0"

ignore_properties = [{type = "contains", value = "jcr:created"}, {type = "contains", value = "jcr:createdBy"}]

# (...) ```

You can use any of those two formats. The difference is the result of this issue.

IntelliJ Setup

Add je commands:

  1. Go to Settings -> Tools -> External Tools.
  2. Add new external tool using + sign.
  3. Configure the tool like on the screenshot below.

je get configuration

Similarly add and configure je put command:

je put configuration

Notes

Configure key bindings:

  1. Go to Settings -> Keymap -> External Tools.
  2. Find the commands added previously.
  3. Set keyboard mapping by Right Click -> Add Keyboard Shortcut

key mappings

License

This project is licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

See CONTRIBUTING.md for hints on how to contribute to je.