Skip to content

Suvam3456/SpectrumCue

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 

Repository files navigation

SpectrumCue

Project Setup

Prerequisites

  • Python (for the backend)
  • Node.js and npm (for the frontend)

Backend Setup

  1. Navigate to the Backend Directory:

    cd backend
  2. Create a Virtual Environment:

    python -m venv venv
  3. Activate the Virtual Environment:

    • On Windows:
      venv\Scripts\activate
    • On macOS/Linux:
      source venv/bin/activate
    • On PowerShell:
      venv/bin/activate.ps1
  4. Install Required Packages:

    pip install -r requirements.txt
  5. Run the FastAPI App:

    uvicorn main:app --reload

    This command will start the FastAPI server in development mode, typically accessible at http://127.0.0.1:8000.

Frontend Setup

  1. Navigate to the Frontend Directory:

    cd frontend
  2. Install Dependencies:

    npm install
  3. Run the Development Server:

    npm run dev

    This command will start the frontend server, usually accessible at http://localhost:3000 (or another specified port).


About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Jupyter Notebook 95.1%
  • JavaScript 3.8%
  • Other 1.1%