A simple & intuitive resource booking system that manages shared resources within a company (e.g. meeting rooms, company vehicles, specialized equipment)
It allows for you to view available resources and book them for specific time slots.
- Make sure you have installed .NET 9 SDK.
- Make sure you have installed MS SQL Server 2022 & the SQL Server Management Studio.
- An IDE for viewing the project. It could be Rider or Visual Studio.
- Clone the repository to your system
git clone https://www.github.com/inalelub/resource-booking-system.git- Open the project in your preferred IDE.
- In your terminal run the following command. The first option for windows & second is if you're on Linux
dotnet run --project .\resource-booking-system\resource-booking-system.csprojdotnet run --project ./resource-booking-system/resource-booking-system.csprojIt might be that when you run the application there is a problem with the connection to the database. There are two connection strings in the appsettings.json file & which are DefaultConnection and LocalDbConnection. For a simple & easier way just change line 9 in Program.cs file to LocalDbConnection instead of DefaultConnetion.