https://github.com/killbill/killbill-avatax-ui
Kill Bill UI for the AvaTax plugin
https://github.com/killbill/killbill-avatax-ui
billing killbill payments subscriptions
Last synced: 3 months ago
JSON representation
Kill Bill UI for the AvaTax plugin
- Host: GitHub
- URL: https://github.com/killbill/killbill-avatax-ui
- Owner: killbill
- License: mit
- Created: 2015-10-14T22:17:57.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2026-03-10T08:35:43.000Z (3 months ago)
- Last Synced: 2026-03-10T15:20:58.244Z (3 months ago)
- Topics: billing, killbill, payments, subscriptions
- Language: Ruby
- Homepage: https://killbill.io
- Size: 99.6 KB
- Stars: 0
- Watchers: 3
- Forks: 5
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Contributing: .github/CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: MIT-LICENSE
Awesome Lists containing this project
README
Overview
========
This Rails mountable engine allows you to manage your Avatax integration in Kill Bill.
* See [killbill-avatax-plugin](https://github.com/killbill/killbill-avatax-plugin) to get started with the Avatax plugin.
* See [killbill-admin-ui-standalone](https://github.com/killbill/killbill-admin-ui-standalone) to get started with the Kill Bill Admin UI.
Kill Bill compatibility
-----------------------
| Avatax UI version | Kill Bill version |
|------------------:|------------------:|
| 0.0.y | 0.16.z |
| 0.1.y | 0.18.z (Rails 4) |
| 0.2.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) |
| 3.x.y | 0.24.z (Rails 7) |
Functionality
-------------
This app lets you:
* configure tax codes associated with products in your catalog
* set tax exemption codes on Kill Bill accounts
* configure your Avatax credentials
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
```
This plugin is using [killbill-assets-ui](https://github.com/killbill/killbill-assets-ui) to load the common assets.
If you want to override the assets you can add it to ```app/assets/stylesheet/avatax``` or ```app/assets/stylesheet/avatax```
For integrate run with [killbill-admin-ui-standalone](https://github.com/killbill/killbill-admin-ui-standalone), please update the Gemfile to use Avatax locally
```
# gem 'killbill-avatax'
gem 'killbill-avatax', :path => '../killbill-avatax-ui'
```