You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+32-2Lines changed: 32 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,9 +2,39 @@
2
2
3
3
A buildpack static websites, aka for:
4
4
5
-
* hugo
6
-
* md-book
5
+
* gohugo
6
+
* mdBook
7
+
8
+
---
9
+
10
+
Here's a high-level overview about how this works:
11
+
12
+
```mermaid
13
+
graph TD
14
+
subgraph BUILD ["build phase"]
15
+
direction LR
16
+
version-->dl["download tool"]
17
+
end
18
+
19
+
subgraph DETECT ["detect phase"]
20
+
direction LR
21
+
w["check work dir"]-->t["determine type"]
22
+
end
23
+
24
+
DETECT-->d(("gohugo or mdBook"))
25
+
d-->BUILD
26
+
BUILD-->s["container with nginx/apache + your site"]
27
+
```
7
28
8
29
Some configuration is available, please see [api](./api/) for details.
9
30
31
+
## Dependencies
32
+
33
+
-`paketo-buildpacks/nginx`
34
+
-`paketo-buildpacks/httpd`
35
+
36
+
Either of these can be customized through various environment variables or a full config file for the web server. More details are available [on our documentation](https://www.runway.horse/docs/recipes/webservers/).
37
+
38
+
## Usage / License
39
+
10
40
Feel free to use this, as you see fit. For the turn-key zero-config solution, please check out [our PaaS service Runway](https://www.runway.horse/).
0 commit comments