BriskBuy is an electronic e-commerce website that customers use to purchase electronic goods at the best available prices in the market.
This project consists of two parts: the client and the server. The client is a NEXT.js application, while the server is a Django application. Both are interconnected using Django's Rest Framework.
- Navigate to the client directory in the terminal using
cd client
. - Install the required dependencies for the frontend by running the command
npm install
. - Configure environment variables by creating a
.env
file within the client folder. Set the following variables:NEXT_PUBLIC_API_URL='YOUR_API_URL'
. If hosting the backend locally, usehttp://localhost:8000/api
.NEXT_PUBLIC_BACKEND_URL='YOUR_BACKEND_URL'
, which would be 'http://127.0.0.1:8000' for local hosting.
- Start the frontend by running
npm run dev
. The application will be accessible at http://localhost:3000.
- Initialize a virtual environment in the root directory using
virtualenv env
. This creates a virtual environment named env. - Activate the virtual environment with
./env/scripts/activate
(Windows) orsource env/bin/activate
(Unix/Linux). - Install required dependencies using
pip install -r requirements.txt
, which reads the file in the root directory. - Navigate to the server folder and create a
.env
file for environment variables. Set these variables:SECRET_KEY=YOUR_SECRET_KEY
. Generate a secret key if you don't have one.DEBUG=True
. Keep it asTrue
unless running locally.
- Initialize the database and tables by running
python manage.py migrate
. - Start the backend using
python manage.py runserver
. The server will run on http://127.0.0.1:8000.
- User authentication (by username or Google OAuth)
- Adding to cart and wishlist
- Fetching product details
- Searching for a product
- User verification (email)
- Async cart management
- Payment integration
- Checkout management
These steps ensure that the necessary environments are configured for both frontend and backend, allowing you to run the BriskBuy application seamlessly.