This project uses Google Chrome speech recognition and Azure sentiment analysis to understand speech through browser and make a sentiment analysis with the help of Azure Text Analysis API.
Follow the instructions in Microsoft Documentation.
- Install nodejs.
- Go to the project directory using a terminal / shell.
- Install dependencies
npm install - Run the app
npm start - Open browser in http://localhost:8000
- Install docker.
- Go to the project directory using a terminal / shell.
- Build the app
docker build -t speech-sentiment .(this is an optional step on the first time) - Run the app
docker run -it -p 8000:8000 speech-sentiment - Open browser in http://localhost:8000
- Install docker.
- Go to the project directory using a terminal / shell.
- Build the app
docker-compose build(this is an optional step on the first time) - Run the app
docker-compose up - Open browser in http://localhost:8000