Skip to content

Latest commit

 

History

History
42 lines (28 loc) · 941 Bytes

README.md

File metadata and controls

42 lines (28 loc) · 941 Bytes

NameSearch (.NET 6.0 Backend) and search-frontend-vue

This repository contains the backend (NameSearch) and frontend (search-frontend-vue) applications.

NameSearch (.NET 6.0 Backend)

Prerequisites

Setup

  1. Open a terminal and navigate to the NameSearch folder.

  2. Build the backend application:

    dotnet build
    
  3. Run the backend server:

    dotnet run
    
  4. The backend server will be running at https://localhost:5000.

search-frontend-vue (Frontend)

Prerequisites

  • Node.js
  • npm

Setup

  1. Open a terminal and navigate to the search-frontend-vue folder.

  2. Install dependencies:

     npm install
    
  3. Start the frontend application:

     npm run serve
    
  4. The frontend application will be running at http://localhost:8080.

  5. Open your browser and navigate to http://localhost:8080 to use the application.