Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/girardinsamuel/masonite-billing
- Owner: girardinsamuel
- License: mit
- Created: 2021-10-03T17:00:11.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-01-16T13:02:49.000Z (almost 2 years ago)
- Last Synced: 2024-10-31T16:52:54.390Z (2 months ago)
- Language: Python
- Size: 30.3 KB
- Stars: 2
- Watchers: 4
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# Masonite Billing
## 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).