This is a Django project built while following Mosh Hamedani's tutorial.
It covers core Django concepts like apps, models, views, and migrations.
-
Clone the repository
git clone
cd Storefront---Django-Project -
Create a virtual environment
python -m venv venv
venv\Scripts\activate # Windows
source venv/bin/activate # Mac/Linux -
Install dependencies
pip install django -
Run migrations
python manage.py migrate -
Start the development server
python manage.py runserver
Built by following Mosh Hamedani's Django tutorial.