A simple Django app to manage a bill of materials.
Project description
BOM is a simple Django app to manage a bill of materials. It is a level up from an excel spreadsheet including an indented bill of materials, octopart price match, and more.
An example of the app in use can be seen [here](https://www.indabom.com).
Quick start
` pip install django-bom `
Add “bom” to your INSTALLED_APPS setting like this:
INSTALLED_APPS = [ ... 'bom', ]
Include the bom URLconf in your project urls.py like this:
url(r'^bom/', include('bom.urls')),
Run python manage.py migrate to create the bom models.
Start the development server and visit http://127.0.0.1:8000/admin/ to manage the bom (you’ll need the Admin app enabled).
Visit http://127.0.0.1:8000/bom/ to begin.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.