DigitDetector.Demo.mp4
This application consists of three main parts: the backend server, the Flask application, and the frontend React application.
To run the backend server, follow these steps:
- Open a terminal window.
- Navigate to the directory containing the
Backend.jsfile. - Run the backend server with the following commands:
npm installthen
node backend.jsAfter running this command, the backend server should be up and running.
- Open a new terminal window (do not close the terminal running the backend server).
- Navigate to the directory containing the
flask_app.pyfile. - Run the following commands to start the Flask application:
pip install tensorflowthen
python flask_app.pyAfter running this command, the Flask application should be up and running.
- Open a new terminal window (do not close the terminals running the backend server and Flask application).
- Navigate to the
srcdirectory. - Run the following command to start the frontend application:
npm installthen
npm install react-signature-canvasthen
npm install react-apexcharts apexcharts
then
npm startAfter running this command, the frontend application should be up and running. You can view the application by opening a web browser and navigating to http://localhost:3000 (or the URL provided in your terminal).
Please ensure you have Node.js, Flask, and npm installed on your machine before running these commands. If not, you can download and install them from their official websites.