Skip to content

Latest commit

 

History

History
89 lines (62 loc) · 2.52 KB

README.md

File metadata and controls

89 lines (62 loc) · 2.52 KB

Park Finder, Client Side

By K. Wicz

Description

An ASP.NET MVC web application that allows users to utilize the ParkFinder API.

Application Preview

Landing Page Preview

Setup/Installation Requirements

1. Install .NET Core

on macOS:

  • Click here to download a .NET Core SDK from Microsoft Corp.

on Windows:

  • Click here to download the 64-bit .NET Core SDK from Microsoft Corp.

Install dotnet script

Enter the command dotnet tool install -g dotnet-script in Terminal (macOS) or PowerShell (Windows).

2. Clone this repository

Enter the following commands in Terminal (macOS) or PowerShell (Windows):

cd desktop
git clone https://github.com/kwicz/ParkFinderClient.Solution
cd ParkFinderClient.Solution

3. Install all necessary packages and make sure the project will build

In your terminal, type the following commands to make sure all necessary packages are included in the project and to launch in your browser:

cd ParkFinderClient
dotnet restore
dotnet build

4. Create the database and tables

Enter the following to build your database and tables for the program:

dotnet ef migrations add Initial
dotnet ef database update

5. Launch the project in your browser

In your terminal, type:

dotnet watch run

Hold command while clicking the link in your local terminal to your local address, which should be:

http://127.0.0.1:5000

6. Download and Run the ParkFinder API

Navigate to https://github.com/kwicz/ParkFinder.Solution and follow the Setup Instructions.

Congratulations! The project is now ready to use.

Known Bugs

No known bugs at this time.

Support and contact details

Have a bug or an issue with this application? Open a new issue here on GitHub.

Technologies Used

License

MIT

Copyright (c) 2020 K Wicz