# git-appraise-web **Repository Path**: mirrors_google/git-appraise-web ## Basic Information - **Project Name**: git-appraise-web - **Description**: Web UI for git-appraise - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-08 - **Last Updated**: 2026-01-31 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Git-Appraise Web UI This repository contains a read-only web UI for git-appraise reviews. ## Disclaimer This is not an official Google product. ## Prerequisites Building requires the Go tools and GNU Make. Running the built binary requires the git command line tool. ## Building the source code Assuming you have the [Go tools installed](https://golang.org/doc/install), run the following command: go get github.com/google/git-appraise-web/git-appraise-web ### Manual steps Assuming you have not run the above command, first checkout the code from the git repo: mkdir -p ${GOPATH}/src/github.com/google cd ${GOPATH}/src/github.com/google git clone https://github.com/google/git-appraise-web.git Build the binary: cd ${GOPATH}/src/github.com/google/git-appraise-web make ## Running the application Binary is placed into `${GOPATH}/bin`: ${GOPATH}/bin/git-appraise-web The tool requires that it be started in a directory that contains at least one git repo, and it shows the reviews from every git repo under that directory. The UI is a webserver which defaults to listening on port 8080. To use a different port, pass it as an argument to the "--port" flag: ${GOPATH}/bin/git-appraise-web --port=12345 ## Try it in App Engine The repo includes a demo of the UI that runs in App Engine. You can try it out with your own project by running gcloud app deploy --project ${PROJECT} demo/ Where `${PROJECT}` is set to the ID of a GCP project you own.