(Replace with actual logo if available)
A full-stack application that identifies fonts from images using deep learning, with a Flask API server and React frontend.
# Navigate to backend
cd back
# Create virtual environment
python -m venv venv
# Activate virtual environment
# On Windows:
venv\Scripts\activate
# On Mac/Linux:
source venv/bin/activate
# Install Python dependencies
pip install -r requirements.txt
# Run the Flask server
python app.py
π The Flask API will be available at: http://localhost:5000
π¨ Frontend (React App)
bash
# Navigate to frontend
cd ../Frontend1
# Install frontend dependencies
npm install
# Start the development server
npm run dev
π The React app will be available at: http://localhost:3000