forked from mirrors/probot
feat(website): 11ty 🚀 (#1516)
This commit is contained in:
parent
4b3ae0eee5
commit
7a43e9e5d4
|
@ -1,6 +1,7 @@
|
|||
---
|
||||
next: docs/hello-world.md
|
||||
permalink: /docs/
|
||||
title: Introduction
|
||||
layout: docs.liquid
|
||||
---
|
||||
|
||||
# Introduction
|
||||
|
@ -11,7 +12,7 @@ If you've ever thought, "wouldn't it be cool if GitHub could…"; imma stop you
|
|||
|
||||
Probot apps are easy to write, deploy, and share. Many of the most popular Probot apps are hosted, so there's nothing for you to deploy and manage. Here are just a few examples of things that have been built with Probot:
|
||||
|
||||
{% include docs/examples.html %}
|
||||
{% include "docs/examples" %}
|
||||
|
||||
Check out the [featured apps](https://probot.github.io/apps/) or [browse more examples on GitHub](https://github.com/search?q=topic%3Aprobot-app&type=Repositories)
|
||||
|
||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 536 KiB |
|
@ -1,3 +1,7 @@
|
|||
---
|
||||
title: Best practices
|
||||
---
|
||||
|
||||
# Best practices
|
||||
|
||||
First and foremost, your app must obey the [The Three Laws of Robotics](https://en.wikipedia.org/wiki/Three_Laws_of_Robotics):
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
---
|
||||
next: docs/testing.md
|
||||
title: Configuration
|
||||
---
|
||||
|
||||
# Configuration
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
---
|
||||
next: docs/http.md
|
||||
title: Deployment
|
||||
---
|
||||
|
||||
# Deployment
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
---
|
||||
next: docs/webhooks.md
|
||||
title: Developing an app
|
||||
---
|
||||
|
||||
# Developing an app
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
---
|
||||
next: docs/persistence.md
|
||||
title: Extensions
|
||||
---
|
||||
|
||||
# Extensions
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
---
|
||||
next: docs/configuration.md
|
||||
title: Interacting with GitHub
|
||||
---
|
||||
|
||||
# Interacting with GitHub
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
---
|
||||
next: docs/development.md
|
||||
title: Hello World
|
||||
---
|
||||
|
||||
# Hello world
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
---
|
||||
next: docs/pagination.md
|
||||
title: HTTP routes
|
||||
---
|
||||
|
||||
# HTTP routes
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
---
|
||||
next: docs/deployment.md
|
||||
title: Logging
|
||||
---
|
||||
|
||||
# Logging
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
---
|
||||
next: docs/extensions.md
|
||||
title: Pagination
|
||||
---
|
||||
|
||||
# Pagination
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
---
|
||||
next: docs/best-practices.md
|
||||
title: Persistence
|
||||
---
|
||||
|
||||
# Persistence
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
---
|
||||
next: docs/logging.md
|
||||
title: Simulate receiving webhooks
|
||||
---
|
||||
|
||||
# Simulate receiving webhooks
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
---
|
||||
next: docs/simulating-webhooks.md
|
||||
title: Testing
|
||||
---
|
||||
|
||||
# Testing
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
---
|
||||
next: docs/github-api.md
|
||||
title: Receiving webhooks
|
||||
---
|
||||
|
||||
# Receiving webhooks
|
||||
|
|
Loading…
Reference in New Issue