Root readme file contains task completion status, as well as intruction on how to run project in development stage using docker compose
Frontend
This directory contains the frontend Vue.js application.
Purpose
The frontend is a Vue.js application that connects to the backend WebSocket server to receive real-time data and display it in a chart.
Project Structure
.
├── index.html
├── package-lock.json
├── package.json
├── public
│ └── vite.svg
├── README.md
├── src # Contains Vue.js application
│ ├── App.vue # Main app component
│ ├── assets # Assets directory
│ │ └── vue.svg
│ ├── components # Components
│ │ └── LineChart.vue # Line chart component
│ ├── main.js # Vue.js entry point
│ ├── style.css # Global css file
│ └── utils # Utility functions
│ ├── formatDate.js # Timestamp formatting
│ └── tryCatch.js # Contains helper function for error handling
└── vite.config.js