https://github.com/korenyoni/codefresh-web-app
Simple Go Web App Built and Deployed on Codefresh
https://github.com/korenyoni/codefresh-web-app
codefresh golang
Last synced: about 2 months ago
JSON representation
Simple Go Web App Built and Deployed on Codefresh
- Host: GitHub
- URL: https://github.com/korenyoni/codefresh-web-app
- Owner: korenyoni
- Created: 2022-04-25T07:43:37.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2022-04-27T11:33:59.000Z (about 3 years ago)
- Last Synced: 2025-02-07T14:44:31.835Z (3 months ago)
- Topics: codefresh, golang
- Language: CSS
- Homepage:
- Size: 467 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Codefresh Web App

A simple web application built and deployed on [Codefresh.io](https://codefresh.io/).

## Usage
### Running as a Go Binary
```bash
$ 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
```bash
$ make docker-build
$ docker run -p 8080:8080 korenyoni/codefresh-web-app
```## Developing Locally
### Install `pre-commit` Git Hook Scripts
```bash
$ pre-commit install
```### Run App Locally
```bash
$ make run
```