diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 9f55488..bcb31b3 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1 +1 @@ -* @paketo-community/web-servers-maintainers +* @paketo-buildpacks/web-servers-maintainers diff --git a/README.md b/README.md index b89e0c9..340a8f2 100644 --- a/README.md +++ b/README.md @@ -1,20 +1,22 @@ # Web Servers Paketo Buildpack -## `gcr.io/paketo-community/web-servers` +## `paketo-buildpacks/web-servers` The Web Servers Paketo Buildpack provides a set of collaborating buildpacks that enable the use of web servers. These buildpacks include: - [NGINX CNB](https://github.com/paketo-buildpacks/nginx) - [Apache HTTPD CNB](https://github.com/paketo-buildpacks/httpd) +- [Node Engine CNB](https://github.com/paketo-buildpacks/node-engine) +- [Yarn CNB](https://github.com/paketo-buildpacks/yarn) +- [Yarn Install CNB](https://github.com/paketo-buildpacks/yarn-install) +- [NPM Install CNB](https://github.com/paketo-buildpacks/npm-install) The buildpack supports building applications that leverage NGINX or HTTPD web -servers. Usage examples can be found in the +servers as well as JavaScript Frontend apps. Usage examples can be found in the [`samples` repository](https://github.com/paketo-buildpacks/samples) under -the [`nginx` -directory](https://github.com/paketo-buildpacks/samples/tree/main/nginx) and -the [`httpd` directory -](https://github.com/paketo-buildpacks/samples/tree/main/httpd). +the [`web-servers` +directory](https://github.com/paketo-buildpacks/samples/tree/main/web-servers). #### The Web Servers buildpack is only compatible with the following builder: - [Paketo Full Builder](https://github.com/paketo-buildpacks/full-builder) (NGINX and HTTPD) @@ -23,5 +25,9 @@ the [`httpd` directory This buildpack also includes the following utility buildpacks: - [Procfile CNB](https://github.com/paketo-buildpacks/procfile) +- [Environment Variables CNB](https://github.com/paketo-buildpacks/environment-variables) +- [Image Labels CNB](https://github.com/paketo-buildpacks/image-labels) +- [CA Certificates CNB](https://github.com/paketo-buildpacks/ca-certificates) +- [Node Run Script CNB](https://github.com/paketo-buildpacks/node-run-script) Check out the [Web Servers Paketo Buildpack docs](https://paketo.io/docs/howto/web-servers/) for more information. diff --git a/buildpack.toml b/buildpack.toml index 1d8c62a..064aefc 100644 --- a/buildpack.toml +++ b/buildpack.toml @@ -1,13 +1,13 @@ api = "0.6" [buildpack] - homepage = "https://github.com/paketo-community/web-servers" - id = "paketo-community/web-server" + homepage = "https://github.com/paketo-buildpacks/web-servers" + id = "paketo-buildpacks/web-server" name = "Paketo Web Servers Buildpack" [[buildpack.licenses]] type = "Apache-2.0" - uri = "https://github.com/paketo-community/web-servers/blob/main/LICENSE" + uri = "https://github.com/paketo-buildpacks/web-servers/blob/main/LICENSE" [metadata] include-files = ["buildpack.toml"] diff --git a/go.mod b/go.mod index 29df397..dcbb872 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/paketo-community/web-servers +module github.com/paketo-buildpacks/web-servers go 1.16