This is a logistics project to automate logistics management. This application alows customer to track their package status and it's location. It also provides an employee login portal where an employee can login and add packages and new users. This project is built on flask and MySQL.
You will need Python and related tools installed:
- Python 3
- PIP
- VirtualEnv:
pip install virtualenv
(Useful if you need to run multiple versions) - MySQL
Create a new virtualenv and install application dependencies.
virtualenv <name>
<name>/bin/pip install -r requirements.txt
Make sure your MySQL server is up and running and import the MySQLdump (logistics.sql) to your MySQL database. Then run the development server:
<name>/bin/python run.py
The website will be up on:
login using following credentials:
Username: USER_001
Password: asdfghjkl
PS - Let me know if you need me to add or remove something.