An OpenAPI application that allows one to Create, Read, Update and/or Delete stored information about different animals -- Dogs or Cats -- that currently reside in an Animal Shelter. (Accessible via Swagger UI)
- C# (C-sharp)
- .NET 5
- Markdown
- ASP.NET Core
- ASP.NET Core - MVC
- ASP.NET Core - Identity
- ASP.NET Core - Swashbuckle (for Swagger UI)
- MySQL
- SQL Database (DB)
- Entity Framework Core (also known as 'EF Core')
- EF Core - DB Migrations
- Razor
- ViewBag
- JSON
- Git Bash (Used in: Local Cmd-line Terminal, navigation of local directories)
- GitHub (Remote repositories)
- GitHub template repository (MSTest)
- OpenAPI - Swagger
Upon navigating to 'http://localhost:5000/swagger', the user is greeted with the Swagger UI. They have full Create/Read/Update/Delete (CRUD) permissions for the application's database of stored information.
-
All that's required to run this application -- at minimum -- is: a decently-performing laptop, and a reliable Internet connection. (The latter is really only required for 'Cloning from GitHub' this time around, however.)
-
To Clone the program from the GitHub repo to your local machine:
-
1.) Click the green button labelled 'Code'. Under the 'HTTPS' tab, there are 3 Options. This program will work best with Option 1, so move on to Step 2.
-
2.) Copy the link. Then, in Git BASH, navigate to the folder you want to put the files in. This can be your Desktop directory, or a different subfolder, whatever you prefer. Next, still in the Git BASH console, type the following (with the copied-link in place of 'HTTPS') and hit ENTER: 'git clone HTTPS' Several lines of text will come up in the console -- that's the files being copied into whichever directory/folder you're in currently. Then, do the following once your prompt line reappears: While still in the console window, type 'pwd' and press ENTER. This will display your current file path. Copy that by highlighting it and pressing 'Ctrl-C', and then pasting it in an easily-accessible word processor like Notepad for reference. Next, open File Explorer, and navigate to through your files according to that File Path you just copy-pasted for reference. Once you've done this, move on to Step 3.
-
3.) To ensure that you can find this folder again in the Steps that follow, please do the following: right-click the containing folder (in which the newly-copied files are stored) and select the option that says 'Pin to Quick Access'. Move on to Step 4.
-
4.) Open VS Code. Then, click on the page icon at the top of the left-hand toolbar. Then click 'Open Folder'. When the Windows File Explorer window appears, navigate to and select the containing folder you pinned in the previous step. Once you've selected the folder and clicked the button to open the folder in VS Code, move on to Step 5.
-
5.) Open a New Terminal (shortcut is Ctrl+Shift+`). Then, in the command line, navigate to the "AnimalShelter" subdirectory by typing 'cd AnimalShelter' then pressing ENTER.
Next, type 'dotnet restore' and press ENTER. This ensures that everything required to run the program is updated and ready to go. (Your command prompt will show up again once the operation is complete; DO NOT kill the terminal or close VS Code.)
Once that's done, move on to the next Section. (DO NOT Navigate to any other directories between now and then!! Otherwise, the Program will not run.)
-
-
Setting up the 'appsettings.json' file Whilst viewing the 'AnimalShelter' directory (~/AnimalShelter), enter the command 'code appsettings.json' into the terminal. Then, in the empty file that opens (and has the name 'appsettings.json'), copy/paste the following into it.
{
"Logging": {
"LogLevel": {
"Default": "Warning",
"System": "Information",
"Microsoft": "Information"
}
},
"AllowedHosts": "*",
"ConnectionStrings": {
"DefaultConnection": "Server=localhost;Port=3306;database=animal_shelter;uid=root;pwd=epicodus;"
}
}
Replace 'YOUR-SQL-USERNAME' and 'YOUR-SQL-PASSWORD' with your MySQL username and password, respectively, and then save the file by pressing 'Ctrl-S'.
- Setting up the Database
A super convenient feature of EF Core is that in order to use a MySQL database, we don't have to import an SQL file to MySQL Workbench. Instead--- While still viewing the 'AnimalShelter' directory, enter this command: 'dotnet ef database update'.
Once the resulting process is completed by EF Core, the database is set up and ready to go.
- While still viewing the 'AnimalShelter' directory, enter this command: 'dotnet ef database update'.
-
Running the Program
- In your GIT BASH command line, enter this command: 'dotnet run' . The files will be compiled and then the application will be started. In the terminal, once the last line of text reads ''Ctrl-C to end the Application'', go to your browser and enter the following address into the search bar: 'http://localhost:5000/swagger/index.html'. Once done loading, the Swagger UI will appear.
The localhost server application will shut down once the user presses 'Ctrl-C' with the terminal selected. To run the program again after a given session ends, simply reenter 'dotnet run' as before.
-
If you get an error, here are Troubleshooting steps to try (In Order):
-
9 times out of 10, an error message will appear if you try to run the program whilst being in the wrong directory location.
To make sure you're in the right place, do the following--- In your Git Bash command line, enter the command 'pwd'. The Path leading to your current Folder (a.k.a. Directory) location will be printed out.
If the last 3 Directories in that Path DO NOT match the following snippet, then you're located in the wrong place. ('CONTAINER' represents your Containing Folder, which is what Contains the Program's Parent/Root folder): ./CONTAINER/AnimalShelterAPI/AnimalShelter
- In your Git Bash command line, enter the command 'pwd'. The Path leading to your current Folder (a.k.a. Directory) location will be printed out.
-
If you're in the Right Place: try entering the command 'dotnet restore'. Once its process is completed, try entering 'dotnet run' again.
-
Still not working? Save a copy of this document, then move the Program's folder to the Recycle bin and Delete it. Then, try installing it from GitHub again using the above steps.
-
If it STILL won't work: Please don't hesitate to reach out via Email. In addition to uncropped screenshots of the issue (send them as Attachments), please also include your Contact Info (along which method is best for contacting you). This allows me to better assist you with Troubleshooting.
-
-
Closing the Program
- A. Browser tab & VS Code
-
Close the browser tab.
-
In VS Code, press 'Ctrl-C' to end the Localhost server application.
-
Next, do 'File > Close Folder' (or 'Ctrl-K F'). When that operation is complete, you may close VS Code.
-
- A. Browser tab & VS Code
- N/A
Email me at ladolego@gmail.com for questions, ideas, concerns, or even any issues that you run into. You may also clone or Fork the content in this Repo to fiddle around with it, if you like.
Licensed through MIT. Copyright (c) 10/28/2022, Samuel Majerus.