Skip to content

Latest commit

 

History

History
56 lines (33 loc) · 1.1 KB

README.md

File metadata and controls

56 lines (33 loc) · 1.1 KB

Homepage

Running the application locally

To run the sample locally, follow the steps below.

Prerequisites

Setup

Clone (or Fork and Clone) this repository

Run the app locally

This project can be run anywhere, but VS Code is required for local debugging.

  1. Open the application with VS Code.

Running the web client

  1. Install front-end dependencies...

cd into client folder

npm install
  1. Run the web client project in the browser (automatically opens a browser window).

cd into client folder

npm run start

Create Docker Image

Start your Docker Desktop or Service and run the following comand. Change dev to the current version.

docker build --platform=linux/amd64 --tag jkockms/homepage:dev .

Run container via:

docker run -p 1337:80 jkockms/homepage:dev

Credits