Sha256: 2b65f95da5e53d60fbae4606b56b3d9f0c0ae680e59b3c9c447e833c810d8994

Contents?: true

Size: 1.56 KB

Versions: 3

Compression:

Stored size: 1.56 KB

Contents

Overview
========

`Kanaui` stands for Kill Bill Analytics UI. This is a mountable rails engine which allows to view the analytics dashboard. In order to work correctly:
* Kill Bill must be running somewhere with the [analytics plugin](https://github.com/killbill/killbill-analytics-plugin)
* Kanaui can be started locally or can be [mounted in a rails app](https://github.com/killbill/killbill-admin-ui-standalone)

Kill Bill compatibility
-----------------------

| Kanaui version | Kill Bill version |
|---------------:|------------------:|
|          0.4.y |            0.16.z |
|          0.5.y |  0.18.z (Rails 4) |
|          0.6.y |  0.18.z (Rails 5) |
|          1.x.y |  0.20.z (Rails 5) |
|          2.1.y |  0.22.z (Rails 5) |
|          2.2.y |  0.24.z (Rails 6) |
|          4.x.y |  0.24.z (Rails 7) |

Getting Started
===============

You can run Kanaui locally by using the test/dummy app provided and interracting with a running version of Kill Bill along with the analytics plugin. In that mode,
there is no support for authorization and no support for multi-tenancy. Instead, Kanaui will use the default user `admin:password` and rely on static configuration
to provide the tenant apiKey and apiSecret.



Kanaui Configuration
--------------------

Specify your Kill Bill server url, api key and secret in ```test/dummy/config/initializers/killbill_client.rb```:

```
KillBillClient.url = 'http://127.0.0.1:8080/'
KillBillClient.api_key = 'bob'
KillBillClient.api_secret = 'lazar'
```

Testing
-------

To run the dummy app:

```
rails s
```


To run tests:

```
rails t
```

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
kanaui-4.0.3 README.md
kanaui-4.0.2 README.md
kanaui-4.0.1 README.md