This guide will help you set up the project for both development and testing environments.
git clone https://github.com/your-username/inventory-manager.git
cd inventory-manager
python3 -m venv venv
source venv/bin/activate
python -m venv venv
venv\Scripts\activate
pip install -r requirements.txt
| Step | Command/Instruction |
|---|---|
| Clone repo | git clone https://github.com/your-username/inventory-manager.git |
| Create venv | python3 -m venv venv (Linux/macOS) or python -m venv venv (Windows) |
| Activate venv | source venv/bin/activate or venv\Scripts\activate |
| Install dependencies | pip install -r requirements.txt |