Skip to content
This repository was archived by the owner on Jan 31, 2025. It is now read-only.

IntegrateDev/Integrate.Interview.Frontend.Public

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 
 
 

Repository files navigation

Integrate Front-End Interview Exercise

Overview

The center of Integrate's product is the Demand Acceleration Platform (DAP). DAP allows users to interact with marketing lead data. A marketing lead is a person who shows interest in a company’s products or services. Our customers need marketing leads that are correct and likely to generate business.

We are striving to build a world-class UI using React. The UI interacts with microservices that expose their functionality through RESTful APIs.

For this exercise, you will create a simple app using React. This repo provides a working create-react-app project for you to use as a base.

The app should allow users to:

  • View all marketing leads (i.e., people)
  • Add a person to the list

Backend API endpoints are provided in this repo, along with Swagger documentation describing them. The goal is working software that can be demonstrated in a browser.

You can use any additional libraries you would like (e.g., React-Bootstrap, Material-UI, etc.), but make sure to keep your design simple. We don't expect you to complete an enterprise-level app during a brief interview!

Prerequisites

You must have the following dependencies installed:

Pulling down the code

Use Git to clone this repo. You can run the following from a command line: git clone https://github.com/IntegrateDev/Integrate.Interview.Frontend.Public.git

Backend API

Running the API

From the root directory of this repo, run the following in a console.

cd ./Api/Integrate.Interview.Api/
dotnet run

Note that if you're using Windows, some command line tools may require back slashes (\) in your directory paths.

Viewing the API Documentation

The API includes Swagger documentation so you can easily call it from your UI. With the API running, navigate to http://localhost:5000/swagger.

React UI

Running the React App

From the root directory of this repo, run the following in a console:

cd ./Frontend/
npm install
npm start

Note that if you're using Windows, some command line tools may require back slashes (\) in your directory paths.

The React app should launch in your browser at http://localhost:3000. When you save changes to a file in the front-end code, the React app will automatically display your changes.

Running the Automated Tests

From the integrate-interview-frontend subdirectory, run the following in a console:

npm test

About

Contains code to be used during technical interviews.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors