Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tidy Up #73

Merged
merged 9 commits into from
Sep 15, 2022
Merged
Show file tree
Hide file tree
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 8 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ on the container. This is done to allow for FPM to run on the container
alongside the web server. The `procs.yml` file it runs with contains the
commands and arguments for both `php-fpm` and the web-server.

When the buildpack runs, you will see in the logs what processes are addded to
When the buildpack runs, you will see in the logs what processes are added to
procs.yml.


Expand All @@ -55,25 +55,27 @@ imagine that you would need to require it as dependency.

To package this buildpack for consumption:

```
```shell
$ ./scripts/package.sh --version <version-number>
```

This will create a `buildpackage.cnb` file under the `build` directory which you
can use to build your app as follows:
```
pack build <app-name> -p <path-to-app> -b build/buildpackage.cnb
```shell
pack build <app-name> \
--path <path-to-app> \
--buildpack build/buildpackage.cnb
```

## Run Tests

To run all unit tests, run:
```
```shell
./scripts/unit.sh
```

To run all integration tests, run:
```
```shell
/scripts/integration.sh
```

Expand Down
Loading