Note
This is a CRUD system developed in ASP.NET CORE MVC, which is connected to a Sqlite3 database. It uses Scaffold to automatically generate the code needed for create, read, update, and delete operations. The frontend is designed with Bootstrap for a responsive and modern user interface.
- Explanatory video on YouTube: https://www.youtube.com/watch?v=FRRp64l4Df4
- ASP.NET Core SDK
- Visual Studio or Visual Studio Code (or another text editor of your choice)
- Clone this repository to your local machine:
-
Open the project in Visual Studio or Visual Studio Code.
-
Open the terminal in the project location and run the following commands to install the dependencies: dotnet restore
-
Make sure you have Sqlite3 installed on your system.
-
Open the
appsettings.jsonfile and check the database connection string. Make sure it is pointing correctly to the Sqlite3 database file. -
Run the migrations to create the database: dotnet ef database update
- Run the application: dotnet run
If you wish to contribute to this project, please follow the following steps:
-
Fork this repository.
-
Create a new branch for your feature: git checkout -b feature/new-feature
-
Make your changes and commit:
- git add .
- git commit -m "Description of your changes"
-
Push your branch: git push origin feature/new-feature
-
Create a pull request on GitHub and describe your changes in detail.
Important
This project was developed by: Keury Ramírez, Victor Sanchez.

