ngure1 / Sample-Student

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Sample student management system to test how the repo will be managed

INSTALLATION

  1. Fork the repo and clone your fork
  2. Assuming you have docker installed ...run the following comand to pull the mysql image
  docker pull mysql
  1. After the download is complete run the following command to start an instance of the image
docker run --name student-test-server -e MYSQL_ROOT_PASSWORD=default123 -p 33066:3306 -d mysql
  1. Ensure the container student-test-server is running and connect it to either mysql workbench or your favourite software to run the sql commands.

NB:Make sure you use the server as localhost, port as 33066, username as root and password as default123

  1. After connecting it successfully open the db_config_commands file from the repo you cloned and run them in the software you connected the server to. NB:There are two .sql files run both of them
  2. Open the project in your terminal and run the following commands:
To restore the dependencies
dotnet restore
To build the project.
dotnet build
  1. Now open the solution in vusual studio and run it...hopefully it works đź’€

About


Languages

Language:Visual Basic .NET 100.0%