/processor-service

Product's aim is to revolutionize the music industry with an innovative platform. Artists experience fair compensation and protection through AI. And can connect their followers with NFTs. This repository contains AI Processing Service For Melomint To Identify Similarity Between Songs

Primary LanguagePythonMIT LicenseMIT

Melomint Processor Service


Installation

  1. Clone the repository:

    git clone https://github.com/your-username/project-name.git ```
    
  2. Navigate to the project directory:

     cd project-name
    
  3. Create a virtual environment (optional but recommended):

     python3 -m venv env
    
  4. Activate the virtual environment:

    # For Linux/macOS
    source env/bin/activate
    
    # For Windows (PowerShell)
    .\env\Scripts\Activate.ps1
    
  5. Install the project dependencies:

    pip install -r requirements.txt
    

Usage

  • Start the FastAPI server:

    uvicorn app.main:app --reload
    
  • This will start the server on http://localhost:3000 (by default) and enable auto-reloading for development purposes.

  • Access the server in your browser or through an API client:

    http://localhost:3000
    

Configuration

The project may have some configuration options that you can customize. These options are typically found in a .env file or through environment variables. Please refer to the project documentation or configuration files for more details on specific configurations.