QRCodeReaderApp is a simple web application to read QR Codes. It is built following the instructions here: https://documentcloud.adobe.com/link/track?uri=urn:aaid:scds:US:a2ca0ebc-ee92-4f4e-b691-5e8719ca8258
Use these instructions to get the project up and running.
You will need the following tools:
Follow these steps to get your development environment set up:
- Clone the repository
- At the root directory, restore required packages by running:
dotnet restore
- Next, build the solution by running:
dotnet build
- Next, within the Cubes3DIntersection.Api directory, launch the back end by running:
dotnet run --project QRCodeReaderApp.Web
- Launch http://localhost:5001/ in your browser
To use QRCodeReaderApp, follow these steps:
- Click on Choose File button and upload a QR Code image (only PNG, GIF or JPEG format are supported)
- Once you'll see the name of the uploaded file (next to the "Choose File" button), click on the "Read QR code" button
- See the results in the new HTML table printed to the screen
QRCodeReaderApp include layers divided by 2 project;
- Application
- Helpers
- Interfaces
- Services
- Web
- Controllers
- Models
- Views
Development of Domain Logic with implementation. Interfaces drives business requirements and implementations in this layer. This layer contains the application services injected into the HomeController (Web Layer) and some helper classes for images handling.
Development of Web Logic with implementation. This layer contains the MVC classes to process a request and generate a response (consuming the Application services), visible in HTML format. The application's main starting point is the ASP.NET Core web project. This is a classical console application, with a public static void Main method in Program.cs. It currently uses the default ASP.NET Core project template which based on Razor Pages templates. This includes appsettings.json file plus environment variables in order to stored configuration parameters, and is configured in Startup.cs.
- .NET Core 3.1
- ASP.NET Core 3.1
- .NET Core Native DI
Thanks to the following people who have contributed to this project:
If you want to contact me you can reach me at daniele.crivello84@libero.it.
This project uses the following license: MIT.