Krankerl

Build Status Crates.io Crates.io AUR

A CLI helper to manage Nextcloud apps.

``` Usage: krankerl enable krankerl disable krankerl init krankerl list apps krankerl list categories krankerl login (--appstore | --github) krankerl package krankerl publish [--nightly] krankerl sign --package krankerl up krankerl --version

Options: -h --help Show this screen. --version Show version. ```

In case you wondered about the app's name: the word Krankerl means tendril in Lower Austrian dialect. This is what that typically looks like in a vine yard.

Enable the current app

Krankerl provides a shortcut to enable an app via the occ tool. This assumes that you are inside the app's root directory and occ can be found in the directory two levels above the current one.

bash krankerl enable

Disable the current app

Krankerl provides a shortcut to disable an app via the occ tool. This assumes that you are inside the app's root directory and occ can be found in the directory two levels above the current one.

bash krankerl disable

Packaging

Krankerl can build a .tar.gz archive for the current app. This assumes a krankerl.toml configuration file to exist in the app's root directory. If it doesn't, Krankerl will fall back to sensible defaults. The command will not use the current state of the app directory, but clone it into a new directory. This step was added to make app builds reproducible and independent of local changes.

Steps

These are the steps Krankerl executes to package an app:

Initialize configuration

You can either manually create the krankerl.toml config file or have Krankerl create it for you by using the init command:

bash krankerl init

This will create a minimal configuration. Adjust it to your needs.

Configuration overview

Excluded files

Certain files and directories of your repository shouldn't be part of the generated tarball. The exclude array in the [packaging] lists glob patterns of files and directories to exclude.

Typical excludes are the .git directory, tests and configuration files that are only required during development.

toml [package] exclude = [ ".git", "composer.json", "composer.lock", "krankerl.toml", "node_modules", "tests", ]

Pre-package commands

Building app archives often requires execution of a few commands. Common examples for that are composer and npm dependencies that are not part of the git repository and thus are missing in the cloned directory.

The package_cmds array will let you specify commands that are executed by sh in the app's root directory.

toml [package] before_cmds = [ "composer install", "npm install", "npm run build", ]

Publish

Krankerl allows you to publish an app release on apps.nextcloud.com once you've packaged the app files with the package command.

Note: This currently only includes the registration on the app store. You have to first upload the archive to GitHub (or any download server) and then pass the URL to the package command:

bash krankerl publish --nightly https://github.com/ChristophWurst/nextcloud_sentry/releases/download/nightly-20171126/sentry.tar.gz

The --nightly switch registers the app as nightly release.