pierre / killbill-deposit-ui

Kill Bill UI for the deposit plugin
https://killbill.io
MIT License
0 stars 0 forks source link

Overview

This Rails mountable engine allows you to manage your Deposit integration in Kill Bill.

Kill Bill compatibility

Deposit UI version Kill Bill version
0.0.y 0.22.z (Rails 5)
0.1.y 0.24.z (Rails 6)
1.0.y 0.24.z (Rails 7)

Functionality

This app lets you:

Getting Started

You can run this locally by using the test/dummy app provided.

To do so, 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'

Then, simply run:

rails s

To run tests:

rails t