This is the repo for the dashboard web app which visualizes sentiment analysis results.
This repo structure is as follows:
frontend
: Displays application UIbackend
: Handles logic, data retrieval and data aggregation for the app
cd frontend
npm install
npm start
Create .env inside the /backend folder
MONGO_URI=yourmongouri
REDIS_HOST=yourredishost
REDIS_PASSWORD=password
Then run the server
cd backend
python -m venv venv # Create a venv
venv/Scripts/activate # Activate venv
pip install -r requirements.txt # Install dependencies
fastapi dev main.py # Start FastAPI server (local only)