-
Notifications
You must be signed in to change notification settings - Fork 606
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Creates dev only gulp tasks and config files to speed up local build and watch times
- Loading branch information
1 parent
939b3d0
commit 72af2cd
Showing
2 changed files
with
152 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,110 @@ | ||
# Build settings | ||
source: app | ||
destination: dist | ||
permalink: pretty | ||
timezone: America/San_Francisco | ||
markdown: kramdown | ||
incremental: true | ||
|
||
kramdown: | ||
syntax_highlighter_opts: | ||
disable : true | ||
|
||
keep_files: | ||
- assets | ||
|
||
# Site settings | ||
name: Kong | ||
title: Open-Source API Management and Microservice Management | ||
description: "Secure, Manage & Extend your APIs or Microservices with plugins for authentication, logging, rate-limiting, transformations and more." | ||
links: | ||
web: https://docs.konghq.com | ||
share: https://docs.konghq.com # legacy link, must maintain for social sharing counters | ||
download: https://bintray.com/kong | ||
instaclustr: "https://www.instaclustr.com/products/kong/?utm_source=partnership&utm_medium=link&utm_campaign=mashape" | ||
repos: | ||
kong: https://github.com/Kong/kong | ||
docs: https://github.com/Kong/docs.konghq.com | ||
vagrant: https://github.com/Kong/kong-vagrant | ||
homebrew: https://github.com/Kong/homebrew-kong | ||
cloudformation: https://github.com/Kong/kong-dist-cloudformation | ||
oauth2_hello_world: https://github.com/Kong/kong-oauth2-hello-world | ||
|
||
collections: | ||
hub: | ||
output: true | ||
layout: extension | ||
|
||
# for Kong platform extensions (not Jekyll) | ||
extensions: | ||
categories: | ||
- name: Authentication | ||
slug: authentication | ||
desc: Protect your services with an authentication layer | ||
- name: Security | ||
slug: security | ||
desc: Protect your services with additional security layer | ||
- name: Traffic Control | ||
slug: traffic-control | ||
desc: Manage, throttle and restrict inbound and outbound API traffic | ||
- name: Serverless | ||
slug: serverless | ||
desc: Invoke serverless functions in combination with other plugins | ||
- name: Analytics & Monitoring | ||
slug: analytics-monitoring | ||
desc: Visualize, inspect and monitor APIs and microservices traffic | ||
- name: Transformations | ||
slug: transformations | ||
desc: Transform request and responses on the fly on Kong | ||
- name: Logging | ||
slug: logging | ||
desc: Log request and response data using the best transport for your infrastructure | ||
- name: Deployment | ||
slug: deployment | ||
desc: Deploy and configure Kong in many environments | ||
types: | ||
- name: plugin | ||
slug: plugin | ||
- name: integration | ||
slug: integration | ||
# - name: dev portal extension | ||
# slug: dev-mod | ||
|
||
exclude: | ||
- node_modules | ||
- jekyll-cache | ||
|
||
# location vars | ||
icons_dir: assets/images/icons | ||
|
||
plugins: | ||
- jekyll-redirect-from | ||
|
||
defaults: | ||
- scope: | ||
path: '' | ||
values: | ||
layout: 'docs' | ||
|
||
- scope: | ||
path: 'install' | ||
values: | ||
layout: 'install' | ||
|
||
- scope: | ||
path: 'docs/ee' | ||
values: | ||
layout: 'docs' | ||
|
||
- scope: | ||
path: 'about' | ||
values: | ||
layout: 'about' | ||
header_html: '<a class="github-button" href="https://github.com/Kong/kong" data-style="mega" data-count-href="/Kong/kong/stargazers" data-count-api="/repos/Kong/kong#stargazers_count" data-count-aria-label="# stargazers on GitHub" aria-label="Star Kong/kong on GitHub">Star</a> <a class="github-button" href="https://github.com/Kong/kong/fork" data-icon="octicon-repo-forked" data-style="mega" data-count-href="/Kong/kong/network" data-count-api="/repos/Kong/kong#forks_count" data-count-aria-label="# forks on GitHub" aria-label="Fork Kong/kong on GitHub">Fork</a>' | ||
breadcrumbs: null | ||
|
||
- scope: | ||
type: hub | ||
values: | ||
layout: extension | ||
permalink: /:collection/:path |