SurisCodeBackend is a backend project built in .NET Core as part of a technical challenge. It demonstrates clean and modular coding practices for backend development.
- Programming Language: C#
- Framework: .NET Core
- Version Control: Git
Ensure the following tools are installed on your system:
- .NET SDK: Version 6.0 or later
- Code Editor: Visual Studio 2022 or Visual Studio Code
- Git: For cloning the repository
Clone the repository to your local machine and navigate to the project directory:
git clone https://github.com/yourusername/SurisCodeBackend.git
cd SurisCodeBackendStart the application by running:
dotnet runThe server will be available at: https://localhost:5001 or http://localhost:5000.
- Controllers: Handles HTTP requests and routes them to the appropriate services.
- Models: Contains data entities and application-specific models.
- Configuration: Stores configuration files.