Skip to content

Commit e272dda

Browse files
author
Natalie Arellano
committed
Clean up buildpack-author tutorials
Signed-off-by: Natalie Arellano <[email protected]>
1 parent 389505d commit e272dda

15 files changed

+51
-29
lines changed

content/docs/for-buildpack-authors/tutorials/basic-buildpack/01_setup-local-environment.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,15 @@
11
+++
2-
title="Set up your local environment"
2+
title="Setting up your local environment"
33
weight=1
44
+++
55

6+
### Check system requirements
7+
8+
Before we get started, make sure you've got the following installed:
9+
10+
{{< download-button href="https://store.docker.com/search?type=edition&offering=community" color="blue" >}} Install Docker {{</>}}
11+
{{< download-button href="/docs/install-pack" color="pink" >}} Install pack {{</>}}
12+
613
<!-- test:suite=create-buildpack;weight=1 -->
714

815
<!-- test:setup:exec;exit-code=-1 -->

content/docs/for-buildpack-authors/tutorials/basic-buildpack/02_building-blocks-cnb.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
+++
2-
title="Building blocks of a Cloud Native Buildpack"
2+
title="The building blocks of a Cloud Native Buildpack"
33
weight=2
44
+++
55

content/docs/for-buildpack-authors/tutorials/basic-buildpack/03_detection.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
+++
22
title="Detecting your application"
3-
weight=403
3+
weight=3
44
+++
55

66
<!-- test:suite=create-buildpack;weight=3 -->

content/docs/for-buildpack-authors/tutorials/basic-buildpack/04_build-app.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
+++
22
title="Building your application"
3-
weight=404
3+
weight=4
44
+++
55

66
<!-- test:suite=create-buildpack;weight=4 -->

content/docs/for-buildpack-authors/tutorials/basic-buildpack/05_make-app-runnable.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
+++
2-
title="Make your application runnable"
3-
weight=405
2+
title="Making your application runnable"
3+
weight=5
44
+++
55

66
<!-- test:suite=create-buildpack;weight=5 -->

content/docs/for-buildpack-authors/tutorials/basic-buildpack/06_caching.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
+++
22
title="Improving performance with caching"
3-
weight=407
3+
weight=6
44
+++
55

66
<!-- test:suite=create-buildpack;weight=7 -->

content/docs/for-buildpack-authors/tutorials/basic-buildpack/07_make-buildpack-configurable.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
+++
22
title="Making your buildpack configurable"
3-
weight=408
3+
weight=7
44
+++
55

66
<!-- test:suite=create-buildpack;weight=8 -->
Lines changed: 9 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,24 @@
11
+++
22
title="Write a basic buildpack"
33
weight=1
4-
expand=true
5-
include_summaries=true
64
+++
75

8-
## Prerequisites
9-
10-
Before we get started, make sure you've got the following installed:
11-
12-
{{< download-button href="https://store.docker.com/search?type=edition&offering=community" color="blue" >}} Install Docker {{</>}}
13-
{{< download-button href="/docs/install-pack" color="pink" >}} Install pack {{</>}}
14-
6+
This is a step-by-step tutorial for creating a nodeJS Cloud Native Buildpack.
157

16-
## Overview
17-
<!--+end+-->
8+
<!--more-->
189

19-
This is a step-by-step tutorial for creating a nodeJS Cloud Native Buildpack.
10+
## What we'll cover
2011

21-
- [Set up your local environment](/docs/for-buildpack-authors/tutorials/basic-buildpack/01_setup-local-environment)
22-
- [Building blocks of a Cloud Native Buildpack](/docs/for-buildpack-authors/tutorials/basic-buildpack/02_building-blocks-cnb)
12+
- [Setting up your local environment](/docs/for-buildpack-authors/tutorials/basic-buildpack/01_setup-local-environment)
13+
- [The building blocks of a Cloud Native Buildpack](/docs/for-buildpack-authors/tutorials/basic-buildpack/02_building-blocks-cnb)
2314
- [Detecting your application](/docs/for-buildpack-authors/tutorials/basic-buildpack/03_detection)
2415
- [Building your application](/docs/for-buildpack-authors/tutorials/basic-buildpack/04_build-app)
2516
- [Making your application runnable](/docs/for-buildpack-authors/tutorials/basic-buildpack/05_make-app-runnable)
2617
- [Improving performance with caching](/docs/for-buildpack-authors/tutorials/basic-buildpack/06_caching)
2718
- [Making your buildpack configurable](/docs/for-buildpack-authors/tutorials/basic-buildpack/07_make-buildpack-configurable)
2819

29-
<!--+if false+-->
30-
---
20+
<br>
3121

32-
<a href="/docs/for-buildpack-authors/tutorials/basic-buildpack/01_setup-local-environment" class="button bg-pink">Start Tutorial</a>
33-
<!--+end+-->
22+
<a href="/docs/for-buildpack-authors/tutorials/basic-buildpack/01_setup-local-environment" class="button bg-pink">
23+
Start Tutorial
24+
</a>

content/docs/for-buildpack-authors/tutorials/basic-extension/01_setup-local-environment.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
+++
2-
title="Set up your local environment"
2+
title="Setting up your local environment"
33
weight=1
44
aliases = [
55
"/docs/extension-author-guide/create-extension/setup-local-environment/",
66
]
77
+++
88

9+
<!--more-->
10+
911
Let's walk through a build that uses extensions, step by step. We will see an image extension that installs `curl` on
1012
the builder image, and switches the run image to an image that has `curl` installed.
1113

content/docs/for-buildpack-authors/tutorials/basic-extension/02_why-dockerfiles.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ aliases = [
66
]
77
+++
88

9+
<!--more-->
10+
911
<!-- test:suite=dockerfiles;weight=2 -->
1012

1113
Let's see a build that requires base image extension in order to succeed.

0 commit comments

Comments
 (0)