Speech Emotion Recognition

Steps to run the project

  • Clone the repository using the command
git clone https://github.com/rohitkori/PRML-Major-Project.git
  • Frontend

    • Go to the frontend directory using the command
    cd frontend
    • Install the dependencies using the command
    npm install
    • Run the project using the command
    npm start

    The frontend will be served at localhost:3000

  • Backend

    • Go to the backend directory using the command
    cd backend
    • Enter the virtual environment using the command
    pipenv shell
    • Install the dependencies using the command
    pipenv install
    • Run the command
    python manage.py migrate

    to migrate the database

    • Run the command
    python manage.py runserver

    The backend will be served at localhost:8000

Docker

  • If you have docker installed on your system, you can run the project using the command
cp .env.example .env
docker-compose up