Live URL: https://product-sys.herokuapp.com
It is a product management web application.where staff member can update or keep track of all orders and user can check-in on products that were ordered by them
All the required dependencies are mention in requirements.txt file
--> Clone the repository using the command below :
git clone https://github.com/kevinjosephh/Management.git
--> Move into the directory where we have the project files :
cd Management
--> Create a virtual environment :
- For Windows
python -m venv .venv
- For Linux/Mac
python3 -m venv .venv
--> Activate the virtual environment :
source .venv/bin/activate
--> Install the requirements :
pip install -r requirements.txt
- For Windows
python manage.py runserver
- For Linux/Mac
python3 manage.py runserver
Kevin Joseph