Prerequisites Install Node JS Refer to https://nodejs.org/en/ to install nodejs
Cloning and Running the Application in local Clone the project into local
Install all the npm packages. Go into the react folder and type the following command to install all npm packages
npm install
In order to run the application Type the following command
npm start
The Application Runs on localhost:3000
For Django
Go to Django folder
For installing required packages, execute the following command in terminal:
$pip install -r requirements.txt
After successful installation execute the following commands:
$python manage.py migrate $python manage.py runserver
HTTP client
axios library is used to make HTTP Calls from react app to upload image for classification and to get classification result
Used tensorflow for classification model