mwolff44 / pyfb-customerportal

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

pyfb-customerportal

image

image

image

Customer portal for PyFreeBilling project

Documentation

The full documentation is at https://pyfb-customerportal.readthedocs.io.

Quickstart

Install pyfb-customerportal:

pip install pyfb-customerportal

Add it to your `INSTALLED_APPS`:

INSTALLED_APPS = (
    ...
    'pyfb_customerportal.apps.PyfbCustomerportalConfig',
    ...
)

Add pyfb-customerportal's URL patterns:

from pyfb_customerportal import urls as pyfb_customerportal_urls


urlpatterns = [
    ...
    url(r'^', include(pyfb_customerportal_urls)),
    ...
]

Features

  • TODO

Running Tests

Does the code actually work?

source <YOURVIRTUALENV>/bin/activate
(myenv) $ pip install tox
(myenv) $ tox

Credits

Tools used in rendering this package:

About

License:MIT License


Languages

Language:Python 68.5%Language:HTML 21.8%Language:Makefile 9.7%