![Banner](https://private-user-images.githubusercontent.com/74977495/297020268-92efc387-1e8c-44e6-b2ad-5a56944c9279.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3MzkzMTc3NTcsIm5iZiI6MTczOTMxNzQ1NywicGF0aCI6Ii83NDk3NzQ5NS8yOTcwMjAyNjgtOTJlZmMzODctMWU4Yy00NGU2LWIyYWQtNWE1Njk0NGM5Mjc5LnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNTAyMTElMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjUwMjExVDIzNDQxN1omWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPWI5ZGE2YjRhYzE0ZGJlZDMwMDc3MTk4ODViMTJhZTE4MTdkYzY2YjhhYTVmOGNkN2Q4Mzk2NDE1MTRkZDY2YTgmWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0In0.h62ZMHy9_6C5i8HrE0vFjia-XUTDF_bQQeAR95OS5o0)
A web application tailored for tech products, with comprehensive CRUD functionality, seamless user authentication and login features, and an intuitive shopping experience with a streamlined cart checkout and secure payment processing.
Prerequisites
Ensure the following are installed;
To set up this project locally, follow these steps:
Windows
- Clone the repository:
git clone https://github.com/thebugged/techstore.git
- Create a virtual environment:
python -m venv env
- Activate the virtual environment:
env\Scripts\activate
- Install the Python dependencies:
pip install -r requirements.txt
- Install the Node.js dependencies:
cd frontend
npm install
or
npm install --force
macOS/Linux
- Clone the repository:
git clone https://github.com/thebugged/techstore.git
- Create a virtual environment:
python -m venv env
- Activate the virtual environment:
source env/bin/activate
- Install the Python dependencies:
pip install -r requirements.txt
- Install the Node.js dependencies:
cd frontend
npm install
or
npm install --force
- From the base directory run the Django development server:
python manage.py runserver
The app will be accessible at http://127.0.0.1:8000/.