Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/girardinsamuel/minierp-django
- Owner: girardinsamuel
- License: gpl-3.0
- Created: 2016-10-22T14:49:04.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2022-06-27T16:53:27.000Z (over 2 years ago)
- Last Synced: 2024-10-31T16:52:54.413Z (2 months ago)
- Language: Python
- Size: 353 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
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.