Skip to content

redhat-scholars/inner-outer-guides

Repository files navigation

OpenShift Inner & Outer Loop Development Guides

This repository contains the source for the OpenShift Inner & Outer Loop Development Guides.

Local development

Gulp

npm install
gulp

Container

podman build -t localhost/inner-outer-guides .
podman run --rm --name guides -d -p 4000:8080 localhost/inner-outer-guides

Deploy to OpenShift

oc new-app https://github.com/redhat-scholars/inner-outer-guides.git --strategy=docker
 oc create route edge inner-outer-guides --service=inner-outer-guides
# To rebuild after changes pushed to git
oc start-build inner-outer-guides --follow