Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/girardinsamuel/masonite-billing

(WIP) Easily add billing services to your Masonite app.
https://github.com/girardinsamuel/masonite-billing

Last synced: 23 days ago
JSON representation

(WIP) Easily add billing services to your Masonite app.

Awesome Lists containing this project

README

        

# Masonite Billing





Masonite Package

GitHub Workflow Status (branch)

PyPI
Python Version
GitHub release (latest by date including pre-releases)
License
Code style: black

## Introduction

WIP (not usable for now) Easily add billing services (Stripe, Paddle) to your app

## Features

- _Add your package main features here_
- _and here_

## Official Masonite Documentation

New to Masonite ? Please first read the [Official Documentation](https://docs.masoniteproject.com/).
Masonite strives to have extremely comprehensive documentation 😃. It would be wise to go through the tutorials there.
If you find any discrepencies or anything that doesn't make sense, be sure to comment directly on the documentation to start a discussion!

Also be sure to join the [Slack channel](http://slack.masoniteproject.com/)!

## Installation

```bash
pip install masonite-billing
```

## Configuration

Add BillingProvider to your project in `config/providers.py`:

```python
# config/providers.py
# ...
from masonite.billing import BillingProvider

# ...
PROVIDERS = [
# ...
# Third Party Providers
BillingProvider,
# ...
]
```

Then install OR publish the required package files (configuration, views ...):

```bash
python craft billing:install
```

OR (depending on your preferences)

```bash
python craft publish BillingProvider
```

## Usage

_Explain how to use your package_

## Contributing

Please read the [Contributing Documentation](CONTRIBUTING.md) here.

## Maintainers

- [Samuel Girardin](https://www.github.com/girardinsamuel)

## License

Masonite Billing is open-sourced software licensed under the [MIT license](LICENSE).