Skip to content

korenyoni/codefresh-web-app

Repository files navigation

Codefresh Web App

badge

A simple web application built and deployed on Codefresh.io.

screenshot

Usage

Running as a Go Binary

$ VERSION=[release version] curl -Lo codefresh-web-app.tar.gz https://github.com/korenyoni/codefresh-web-app/releases/download/v${VERSION}/codefresh-web-app_${VERSION}_darwin_arm64.tar.gz
$ tar -xvzf codefresh-web-app.tar.gz
$ PORT=8080 ./codefresh-web-app

Building and Running as a Container

$ make docker-build
$ docker run -p 8080:8080 korenyoni/codefresh-web-app

Developing Locally

Install pre-commit Git Hook Scripts

$ pre-commit install

Run App Locally

$ make run