Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/girardinsamuel/minierp-django

Mini ERP to manage clients, create invoices/quotes with a custom PDF template.
https://github.com/girardinsamuel/minierp-django

Last synced: 23 days ago
JSON representation

Mini ERP to manage clients, create invoices/quotes with a custom PDF template.

Awesome Lists containing this project

README

        

=======
MiniERP
=======

MiniERP is a simple Django app to ...

Detailed documentation is in the "docs" directory.

Quick start
-----------

1. Add "minierp" to your INSTALLED_APPS setting like this::

INSTALLED_APPS = [
...
'minierp',
]

2. Include the polls URLconf in your project urls.py like this::

url(r'^minierp/', include('minierp.urls')),

3. Run `python manage.py migrate` to create the minierp models.

4. Start the development server and visit http://127.0.0.1:8000/minierp.