This repo is the home to the Triplann API. This c#/.net API works in tandem with the Client Application. Processing all CRUD operations sent to it. To Install the needed API, follow this short installation guide.
-
Download .net core here.
-
Clone the API repo in a seperate folder than the client side app
git clone [email protected]:john-dulaney/Triplann-API.git
- Open your terminal, navigate to the API's folder, and run the following 2 commands:
dotnet ef migrations add <INSERT A NAME HERE>
then
dotnet ef database update
- Assuming you didnt throw any errors during those 2 commands, you are ready to start the api up for use. Use the following command to start the API service:
dotnet run
Thats It! Start a new terminal window, and return to my client-side repo's readme here.