Files
workshops/README.org
2023-12-04 20:22:11 +13:00

1.1 KiB

OpenShift Application Delivery Workshop

This repository contains a basic nextjs frontend designed to be exported as a static site and served via github pages.

The frontend contains a walkthrough for workshop designed to be run over three hours covering basic application delivery, monitoring and security on OpenShift. The workshop content is tailored towards participants that are new to containers and kubernetes and will not be developing applications but will instead be expected to deliver existing applications onto OpenShift.

Local development

To set up a local development environment run the following:

# Install dependencies
npm install

# Build and serve the site
npm run build && npm run serve

Exporting static site

To export the site to static html to serve for example via github pages, run:

# Install dependencies
npm install

# Build and export the site
npm run build && npm export