- React 17.0.2
- Redux 4.0.5
- Django 3.2
- Django REST Framework 3.12.4
- Bootstrap 4.6.0
- Clone the repo using
https://github.com/patel-himanshu/comic-book-store.git
. - Create a virtual environment for running the back end using the command
python3 -m venv env
, whereenv
is the name of your virtual environment. You can replace it with any other name of your choice. - Now activate your virtual environment using
source env/bin/activate
(for Ubuntu) or.\env\Scripts\activate
(for Windows). - After activating the virtual environment, go to
backend
directory using your Terminal and install the required Python packages usingpip install -r requirements.txt
. - To run the back end of the project, execute
python manage.py runserver
command. - Now go to
frontend
directory using another Terminal, and run the commandnpm install
and wait for the node modules to install. - To run the front end of the project, execute
npm run start
command. - The development server starts at
http://localhost:3000
. Enter the URL in your browser to visit the project. - To stop the development server, press
CTRL + C
in both the terminal windows.