A Django-based stock management system that allows you to manage products, clients, and suppliers.
- Secure login system
- Product management (Add, Edit, Delete, View)
- Client management (Add, Edit, Delete, View)
- Supplier management (Add, Edit, Delete, View)
- Stock tracking
- Modern and responsive UI
- Create a virtual environment:
python -m venv venv- Activate the virtual environment:
- Windows:
venv\Scripts\activate- Linux/Mac:
source venv/bin/activate- Install dependencies:
pip install -r requirements.txt- Run migrations:
python manage.py migrate- Create a superuser (admin):
python manage.py createsuperuserUse these credentials:
- Username: admin
- Password: admin
- Run the development server:
python manage.py runserver- Access the application at http://127.0.0.1:8000
- Username: admin
- Password: admin