A Django web application for an e-commerce storefront.
- Product browsing and management
- Django Debug Toolbar for development
- Templating with Django's template language
- Clone the repository
git clone https://github.com/hmrafid/django-storefront.git
cd django-storefront- Create a virtual environment and install dependencies
python -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate
pip install -r requirements.txt- Run migrations
python manage.py migrate- Start the development server
python manage.py runserver- Visit http://127.0.0.1:8000/playground/hello/ in your browser
- Debug toolbar is available at the right side of the page when DEBUG=True
- Set breakpoints and use Django debugging with VS Code as configured in launch.json