https://github.com/onsi/grace
Last synced: 8 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/onsi/grace
- Owner: onsi
- Created: 2014-07-29T22:50:24.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2017-05-16T00:39:12.000Z (about 9 years ago)
- Last Synced: 2025-03-27T01:11:56.943Z (about 1 year ago)
- Language: Go
- Size: 202 KB
- Stars: 2
- Watchers: 1
- Forks: 7
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Grace - a simple Go webapp for testing cloudfoundry
```
go get -v github.com/onsi/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:
onsi/grace (based on ubuntu)
onsi/grace-busybox (based on busy-box)
To rebuild the dockerimage:
```bash
docker build -t="onsi/grace-busybox" .
docker push onsi/grace-busybox
```