- WebUI Build:
- WebUI Release:
- Data Access Layer Build:
- Data Access Layer Release:
- Scheduler Build:
- Scheduler Release:
- Overview
1.1 System Context
1.2 Containers
1.2 BandCamsWebUI Components
1.2 BandCamsDAL Components
1.2 BandCamsScheduler Components - Infrastructure
- Running locally
- FAQ
The idea of this project came upon at the beginning of the pandemic from bands that were not able to perform concerts with the audience. They wanted to create a place where all online events that started to become popular could be grouped and watched. The BandCams website was planned as a place connecting streams from various websites (eg. YouTube or Facebook) and stores information about online concerts. Because of that, it allows to watch concerts via external services and not to stream directly through its infrastructure.
The project stopped at the development environment and was suspended. Because of that, code is now public on GitHub. There are minor changes comparing to the original version but they are mainly focused on making running project locally easier.
If you wish to examinate project on development environment please contact me on LinkedIn (www.linkedin.com/in/marek-ott-171608152) beacuse it is protected via Azure AD. After granting access follow below links:
Website:
https://bandcams-d.azurewebsites.net/
Data Acces Layer Swagger:
https://bandcamsdal-d.azurewebsites.net/
- Install MS localdb (https://docs.microsoft.com/en-us/sql/database-engine/configure-windows/sql-server-express-localdb?view=sql-server-ver15). You can skip this part if you have Microsoft SQL Server on your locall machine.
- Build database project.
- Deploy database project.
- In \test\RestAPI.IntegrationTests\appsettings.IntegrationTests.json, \src\RestAPI\appsettings.Development.json and \src\WebUI\appsettings.Development.json change value of "BandCamsDB" to connection string of created in previous step database.
- In root directory open CMD and run:
dotnet build
- After a successful build in the same directory run:
dotnet test
- If all tests are passing (one should be skipped). You are ready to run the application. Go to \src\RestAPI and run in CMD:
dotnet run
- Got to \src\WebUI and again run:
dotnet run
- You can now examine the main website on https://localhost:44312 and Data Access Layer Swagger on https://localhost:5001.
- Some tests are crushing. What is the problem?
Check if all files mentioned in the fourth step of Running locally have valid connection strings. - Can I run BandCamsScheduler?
Yes, it can be run locally but requires Azure Queue and SendGrid account. For more information contact me via LinkedIn.