# grace **Repository Path**: mirrors_cloudfoundry/grace ## Basic Information - **Project Name**: grace - **Description**: No description available - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-24 - **Last Updated**: 2026-03-21 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Grace - a simple Go webapp for testing cloudfoundry ``` go get -v github.com/cloudfoundry/grace goto grace ``` To push to diego ```bash export APP_NAME=grace cf push $APP_NAME --no-start -b=go_buildpack cf curl /v2/apps/`cf app $APP_NAME --guid` -X PUT -d '{"diego":true}' cf start $APP_NAME ``` Dockerimage: cfdiegodocker/grace (based on busy-box) To rebuild the dockerimage: ```bash docker build -t="cfdiegodocker/grace" . docker push cfdiegodocker/grace ```