- Node.js and yarn for the frontend.
- Python 3.7+ and pip for the backend.
The frontend is built with React, and yarn as the package manager.
-
Navigate to the
frontenddirectory:cd frontend -
Install dependencies
yarn install
-
Start the development server
yarn dev
This is the backend component of the Real-Time Stock Price Prediction Application. It is built using Flask and serves as an API to handle requests, process CSV files, and perform stock price predictions.
-
Navigate to the
backenddirectory:cd backend -
Create and activate a virtual environment
python -m venv env .\env\Scripts\activate
-
Install the required packages
pip install -r requirements.txt
-
Start the backend server
flask run --debug