Warehouse Management System built with Django.
- Product registration and listing
- Stock control
- Python
- Django
1. Create and activate your virtual environment
# Create
python -m venv .venv
# Activate (Windows)
.venv\Scripts\Activate.ps1
# Activate (Linux/macOS)
source .venv/bin/activate2. Install dependencies
pip install -r requirements.txt3. Configure environment variables
cp .env-example .env
# Edit .env and set your SECRET_KEY4. Run migrations
python manage.py migrate5. Start the server
python manage.py runserver