Skip to content

Latest commit

 

History

History
49 lines (31 loc) · 694 Bytes

File metadata and controls

49 lines (31 loc) · 694 Bytes

FrameSleuth

Backend Setup (Flask API)

  1. Install Python Packages

    pip install -r requirements.txt
  2. Create a .env File

    Create a file named .env and add your GROQ_API_KEY:

    GROQ_API_KEY=your_api_key_here
    

    You can acquire your API key at https://console.groq.com/keys.

  3. Start the Flask API

    python app.py

Frontend Setup (React App)

  1. Navigate to the Frontend Folder

    cd bitcamp-frontend
  2. Install NPM Packages

    npm install
  3. Run the Frontend

    npm start