Skip to content

Latest commit

 

History

History
31 lines (21 loc) · 698 Bytes

File metadata and controls

31 lines (21 loc) · 698 Bytes

3-Tier DevSecOps Project

This repository contains a simple Node.js API and a React client used for a user management demo. Follow the steps below to get the project running locally.

Setup

  1. Install Node.js (version 18 or later is recommended).

  2. Install dependencies for both the API and client:

    cd api && npm install
    cd ../client && npm install
  3. Start the API server:

    cd api
    npm start
  4. In a separate terminal, start the React client:

    cd client
    npm start
  5. Open http://localhost:3000 in your browser to use the application.

The client now displays an animated banner welcoming you to DevOps Shack.