Application that show the survey results for backend frameworks to the user in real time.
The hangfire job running in the API layer runs every minute and saves 60 random survey data to the database.(The survey table is reset when the number of records exceeds 200) Via Signalr, the client presents the data live to the user.
1-First for database connection edit the connectionstring field in the appsettings.json file in the api layer.
2-Then run the following command in the package manager console to mirror the migrations to the database.
update-database
3-Run api and web project
4-Send a get request to the https://localhost:44310/api/survey endpoint to start the hangfire job.(You can also use swagger instead of postman)
It's that simple!