Checkout the Demo
This is a small web app to display information from the sensor in my house
Technologies used:
- React & Material UI for front-end
- .NET Core for backend API
- Entity Framework Core & SQL Server for database
You can develop project on your own machine with the following steps:
- Install NPM packages in
KotibotWeb/ClientApp
folder withnpm install
- Start SQL Server with docker in project root
docker-compose up -d
- Initialize database
dotnet ef database update
- Start debugging the project either from VS Code or from command line
dotnet run
I'm using Raspberry Pi with DHT-22 sensor to publish temperature data to app. App stores the data to SQL Server and uses small React app to render chart of the most recent data.