Inventory Management System is a web based Application developed in Python/Django. The Software is designed for the small business to maintain there records, customer ledger, sales and etc.
Designed by Partum Solutions (New Startup in Quetta, Pakistan. Provides Services and Solutions).
Retailers (Multi Tenancy)
Customer and Ledgers
Stock Management
Low Stock Notification
Sales
Employees
Expenses
Suppliers
Feedback
Sales Reports (Daily, Weekly, Monthly)
Stocks Logs (Daily, Monthly)
2.7.10
Using Django Framework and JQuery on the Frontend
-
Create a Virtual Environment
-
Create a Fork and Clone Project by using the following command
git clone git@github.com:janzaheer/partum_inventory.git
- Create local settings file and add the local database configuration, You can use any database SQLite, Mysql or Postgress SQL etc. Following is the configuration code for SQLite database.
# settings_local.py
import os
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': os.path.join(BASE_DIR, 'db.local'),
}
}
- Go to the main directory where
manage.py
file exists abd install all the requirements by running the command:
pip install -r requirements.txt
- Migrate by runnning the following command.
python manage.py migrate
- Create super user to access the admin
python manage.py createsuperuser
- Run the Django Server by using following command.
python manage.py runserver
Now you can access the application in your browser by URL http://localhost:8000
- You can ask me any question any time, email me zaheerjanbadini@gmail.com
- Please use GitHub issues to report issues.
As an open source project with a strong focus on the user community, we welcome contributions as GitHub pull requests. See our Contributor Guides to get going. Discussions and RFCs for features happen on the design discussions section of our Forum.