# example-sidecar-buildpack **Repository Path**: mirrors_cloudfoundry/example-sidecar-buildpack ## Basic Information - **Project Name**: example-sidecar-buildpack - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **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 # example-sidecar-buildpack To use this repo on a cloudfoundry instance simply zip it up and provide it to as a supply buildpack to a `cf push` Ex: 1) Zip it up ``` # from the root of this repo, zip up buildpack excluding the .git directory zip -r my-bp-name.zip . -x *.git* ``` 2) upload the buildpack to cloudfoundry ``` cf create-buildpack my-bp-name.zip ``` 3) push an app ``` cd # note the buildpack created above cannot be the final buildpack cf push my-app -b -b ```