https://github.com/moshthepitt/tiny-erp
Enterprise Resource Planning (ERP) for tiny companies
https://github.com/moshthepitt/tiny-erp
Last synced: 5 months ago
JSON representation
Enterprise Resource Planning (ERP) for tiny companies
- Host: GitHub
- URL: https://github.com/moshthepitt/tiny-erp
- Owner: moshthepitt
- License: mit
- Created: 2019-04-16T17:15:10.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2023-04-21T21:13:11.000Z (about 2 years ago)
- Last Synced: 2025-01-18T05:39:29.471Z (5 months ago)
- Language: Python
- Size: 482 KB
- Stars: 6
- Watchers: 1
- Forks: 0
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# tiny-erp
[](https://travis-ci.com/moshthepitt/tiny-erp)
Enterprise Resource Planning (ERP) for tiny companies
## Installation
1. Install the app: `pip install django-tiny-erp`
2. Add the tiny-erp apps to `INSTALLED_APPS`.```py
INSTALLED_APPS = [
# the usual django stuff
"tiny_erp",
"tiny_erp.apps.locations",
"tiny_erp.apps.products",
"tiny_erp.apps.purchases",
"small_small_hr",
'model_reviews',
'django_comments',
]
```3. Run `manage.py migrate` so that Django will create the model_review tables.
4. Set up the [django-model-reviews](https://github.com/moshthepitt/django-model-reviews) and [small-small-hr](https://github.com/moshthepitt/small-small-hr) apps.