Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cloudfoundry/go-buildpack
Cloud Foundry buildpack for the Go Language
https://github.com/cloudfoundry/go-buildpack
v2b
Last synced: 1 day ago
JSON representation
Cloud Foundry buildpack for the Go Language
- Host: GitHub
- URL: https://github.com/cloudfoundry/go-buildpack
- Owner: cloudfoundry
- License: apache-2.0
- Created: 2014-04-07T14:54:09.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2024-11-07T04:36:29.000Z (10 days ago)
- Last Synced: 2024-11-07T05:28:07.423Z (10 days ago)
- Topics: v2b
- Language: Go
- Homepage: http://docs.cloudfoundry.org/buildpacks/
- Size: 96.2 MB
- Stars: 82
- Watchers: 65
- Forks: 119
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
- awesome-ibmcloud - go-buildpack - Cloud Foundry buildpack for the Go Language. (Platform)
README
# Cloud Foundry Go(Lang) Buildpack
[![CF Slack](https://www.google.com/s2/favicons?domain=www.slack.com) Join us on Slack](https://cloudfoundry.slack.com/messages/buildpacks/)
A Cloud Foundry [buildpack](http://docs.cloudfoundry.org/buildpacks/) for Go(lang) based apps.
### Buildpack User Documentation
Official buildpack documentation can be found at [go buildpack docs](http://docs.cloudfoundry.org/buildpacks/go/index.html).
### Building the Buildpack
To build this buildpack, run the following command from the buildpack's directory:
```bash
./scripts/package.sh --stack [cflinuxfs3 | cflinuxfs4] --version
```You can then find the built artifact in `./build/buildpack.zip`.
### Use in Cloud Foundry
Upload the buildpack to your Cloud Foundry and optionally specify it by name
```bash
cf create-buildpack [BUILDPACK_NAME] [BUILDPACK_ZIP_FILE_PATH] 1
cf push my_app [-b BUILDPACK_NAME]
```### Testing
Buildpacks use the [Switchblade](https://github.com/cloudfoundry/switchblade) framework for running integration tests.
To test this buildpack, run the following command from the buildpack's directory:
1. Run unit tests
```bash
./scripts/unit.sh
```1. Run integration tests
```bash
./scripts/integration.sh --github-token --platform
```More information can be found on the [switchblade repo](https://github.com/cloudfoundry/switchblade).
### Contributing
Find our guidelines [here](./CONTRIBUTING.md).
### Help and Support
Join the #buildpacks channel in our [Slack community](http://slack.cloudfoundry.org/) if you need any further assistance.
### Reporting Issues
Please fill out the issue template fully if you'd like to start an issue for the buildpack.
### Acknowledgements
Inspired by the [Heroku buildpack](https://github.com/heroku/heroku-buildpack-go).