Skip to content

salmaayad0/book-shop-django

Repository files navigation

Django Book Shop E-commerce Website

This is a Django-based e-commerce website for a book shop. The website allows users to browse and purchase books, filter books by category, and manage their shopping cart using Django sessions. The project uses PostgreSQL as the database to store book information.

Installation

  1. Clone the repository to your local machine:

    git clone <[email protected]:salmaayad0/book-shop-django.git>
    ```
    
    
  2. Navigate to the project directory:

    cd shop
    ```
    
    
  3. Create and activate a virtual environment:

    python3 -m venv env
    source env/bin/activate
    ```
    
    
  4. Install the project dependencies:

    pip install -r requirements.txt
    ```
    
    
  5. Set up the database:

    • Make sure you have PostgreSQL installed and running.
    • Create a new database for the project.
    • Update the database configuration in the settings.py file located in the shop directory. Modify the DATABASES section with your database credentials.
  6. Apply the database migrations:

    python manage.py migrate
    ```
    
    
  7. Load the initial book data:

    python manage.py loaddata initial_books.json
    ```
    
    
  8. Start the development server:

    python manage.py runserver
    ```
    
    
  9. Open your browser and access the website at http://localhost:8000/.

Usage

Admin Panel

  • Access the admin panel at http://localhost:8000/admin/. Use your superuser credentials to log in.
  • The admin panel allows you to manage book categories, authors, and other related information.

Book Listing

Book Details

Shopping Cart

Media Files

License

This project is licensed under the MIT License.

Acknowledgements

  • The project uses the Django web framework. You can find more information about Django in the official documentation.
  • The PostgreSQL database is used to store book information. For more details, refer to the PostgreSQL documentation.
  • The project also utilizes Django sessions for managing the shopping cart. You can learn more about Django sessions in the official documentation.

Feel free to customize and enhance the project according to your requirements. Happy coding!