A Django-based web application for an online bookstore — built to practice full-stack development using Python and Django.
- Homepage with a list of books
- Simple UI using HTML & CSS
- Django-powered backend with routing and templates
- Database using SQLite
- Python 3
- Django Framework
- HTML & CSS
- Git & GitHub
git clone https://github.com/mahi17916/bookstore_project.git
2. Navigate into the project directory
cd bookstore_project
3. Run the Django development server
python manage.py runserver
4. Open your browser and visit:
http://127.0.0.1:8000/
Project Structure
bookstore_project/
├── store/ # Django app for the bookstore
│ ├── views.py # View functions
│ ├── urls.py # URL routes for the app
│ └── templates/ # HTML templates
│ └── store/
│ └── index.html # Homepage template
├── bookstore_project/ # Project settings
│ └── settings.py
├── manage.py # Django management script
├── db.sqlite3 # SQLite database file