-
-
Notifications
You must be signed in to change notification settings - Fork 298
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
39 changed files
with
810 additions
and
704 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
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 |
---|---|---|
|
@@ -22,4 +22,4 @@ Examples: | |
docs: Add docs for X | ||
spec: Z disambiguation | ||
--> | ||
--> |
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ name: Release Chart | |
on: | ||
push: | ||
tags: | ||
- 'v*' | ||
- "v*" | ||
|
||
jobs: | ||
release: | ||
|
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
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
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 |
---|---|---|
@@ -1,21 +1,21 @@ | ||
{ | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "Launch the hub", | ||
"type": "go", | ||
"request": "launch", | ||
"mode": "auto", | ||
"program": "${workspaceFolder}/caddy/mercure", | ||
"env": { | ||
"MERCURE_PUBLISHER_JWT_KEY": "!ChangeThisMercureHubJWTSecretKey!", | ||
"MERCURE_SUBSCRIBER_JWT_KEY": "!ChangeThisMercureHubJWTSecretKey!", | ||
"MERCURE_EXTRA_DIRECTIVES": "anonymous\nwrite_timeout 10s", | ||
"GLOBAL_OPTIONS": "debug", | ||
"SERVER_NAME": "localhost, host.docker.internal", | ||
"CADDY_SERVER_EXTRA_DIRECTIVES": "tls internal" | ||
}, | ||
"args": ["run", "--config", "../../dev.Caddyfile"] | ||
} | ||
] | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "Launch the hub", | ||
"type": "go", | ||
"request": "launch", | ||
"mode": "auto", | ||
"program": "${workspaceFolder}/caddy/mercure", | ||
"env": { | ||
"MERCURE_PUBLISHER_JWT_KEY": "!ChangeThisMercureHubJWTSecretKey!", | ||
"MERCURE_SUBSCRIBER_JWT_KEY": "!ChangeThisMercureHubJWTSecretKey!", | ||
"MERCURE_EXTRA_DIRECTIVES": "anonymous\nwrite_timeout 10s", | ||
"GLOBAL_OPTIONS": "debug", | ||
"SERVER_NAME": "localhost, host.docker.internal", | ||
"CADDY_SERVER_EXTRA_DIRECTIVES": "tls internal" | ||
}, | ||
"args": ["run", "--config", "../../dev.Caddyfile"] | ||
} | ||
] | ||
} |
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
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 |
---|---|---|
@@ -1,33 +1,33 @@ | ||
# Mercure Documentation | ||
|
||
* [Mercure in a Few Words](mercure.md) | ||
* [Getting Started](getting-started.md) | ||
- [Mercure in a Few Words](mercure.md) | ||
- [Getting Started](getting-started.md) | ||
|
||
## Protocol Specification | ||
|
||
* [The Specification](../spec/mercure.md) (also available as an [IETF's Internet Draft](https://datatracker.ietf.org/doc/draft-dunglas-mercure/) designed to be published as an RFC) | ||
* [Case studies and use cases](spec/use-cases.md) | ||
* [Frequently Asked Questions](spec/faq.md) | ||
* [OpenAPI spec](https://github.com/dunglas/mercure/blob/master/spec/openapi.yaml) | ||
- [The Specification](../spec/mercure.md) (also available as an [IETF's Internet Draft](https://datatracker.ietf.org/doc/draft-dunglas-mercure/) designed to be published as an RFC) | ||
- [Case studies and use cases](spec/use-cases.md) | ||
- [Frequently Asked Questions](spec/faq.md) | ||
- [OpenAPI spec](https://github.com/dunglas/mercure/blob/master/spec/openapi.yaml) | ||
|
||
## Mercure.rocks Hub | ||
|
||
* [Installing the Mercure.rocks Hub](hub/install.md) | ||
* [Configuration](hub/config.md) | ||
* [The Cloud version](hub/cloud.md) | ||
* [Creating a cluster of hubs](hub/cluster.md) | ||
* [Cookbooks](hub/cookbooks.md) | ||
* [Running behind NGINX](hub/nginx.md) | ||
* [Running behind Traefik Proxy](hub/traefik.md) | ||
* [Troubleshooting](hub/troubleshooting.md) | ||
* [Debug the Mercure.rocks Hub](hub/debug.md) | ||
* [Upgrade to new versions](UPGRADE.md) | ||
* [Load Testing](hub/load-test.md) | ||
- [Installing the Mercure.rocks Hub](hub/install.md) | ||
- [Configuration](hub/config.md) | ||
- [The Cloud version](hub/cloud.md) | ||
- [Creating a cluster of hubs](hub/cluster.md) | ||
- [Cookbooks](hub/cookbooks.md) | ||
- [Running behind NGINX](hub/nginx.md) | ||
- [Running behind Traefik Proxy](hub/traefik.md) | ||
- [Troubleshooting](hub/troubleshooting.md) | ||
- [Debug the Mercure.rocks Hub](hub/debug.md) | ||
- [Upgrade to new versions](UPGRADE.md) | ||
- [Load Testing](hub/load-test.md) | ||
|
||
## Ecosystem | ||
|
||
* [Awesome Mercure: Libraries, Examples and Learning Resources](ecosystem/awesome.md) | ||
* [Using a Mercure Service in Your GitHub Actions](ecosystem/github-actions.md) | ||
* [Using Mercure and Hotwire to Stream Page Changes](ecosystem/hotwire.md) | ||
* [Getting Help](ecosystem/help.md) | ||
* [Conformance Tests](ecosystem/conformance-tests.md) | ||
- [Awesome Mercure: Libraries, Examples and Learning Resources](ecosystem/awesome.md) | ||
- [Using a Mercure Service in Your GitHub Actions](ecosystem/github-actions.md) | ||
- [Using Mercure and Hotwire to Stream Page Changes](ecosystem/hotwire.md) | ||
- [Getting Help](ecosystem/help.md) | ||
- [Conformance Tests](ecosystem/conformance-tests.md) |
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
Oops, something went wrong.