YADO - Backend is the backend part of the YADO project, which serves as the API for user authentication, hotel data management, and more. It is developed using ASP .NET Core with an MVC (Model-View-Controller) architectural pattern. This backend is designed to work seamlessly with the YADO - Frontend Angular application. The primary goal of YADO is to enhance the hotel search and management experience for travelers.
- Clone this repository to your local machine.
git clone https://github.com/YadoGo/yado-backend.git
- Navigate to the project directory.
cd yado-backend
- Restore the required NuGet packages.
dotnet restore
- Apply migrations to set up the database.
dotnet ef database update
- Start the development server.
dotnet run
- The API will be available at
http://localhost:5000
.
- Backend Technology: ASP .NET Core with MVC architecture
- Database: Entity Framework Core
- License: MIT License
If you want to contribute to this project, follow these steps:
- Fork the repository.
- Create a branch for your new feature:
git checkout -b feature/awesome-feature
. - Make your changes and commit:
git commit -m 'Add an awesome feature'
. - Push your changes to your fork:
git push origin feature/awesome-feature
. - Open a pull request in the main repository.
This project is licensed under the MIT License. See the LICENSE file for more details.