mirror of
https://github.com/sablierapp/sablier.git
synced 2025-12-21 13:23:03 +01:00
docs: add discord server and link pugin repositories
This commit is contained in:
23
README.md
23
README.md
@@ -1,7 +1,8 @@
|
|||||||
#
|
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
|
[](https://goreportcard.com/report/github.com/sablierapp/sablier)
|
||||||
|
[](https://discord.gg/WXYp59KeK9)
|
||||||
|
|
||||||
A free and open-source software to start workloads on demand and stop them after a period of inactivity.
|
A free and open-source software to start workloads on demand and stop them after a period of inactivity.
|
||||||
|
|
||||||
Think of it a bit like a serverless platform, but for your own servers.
|
Think of it a bit like a serverless platform, but for your own servers.
|
||||||
@@ -17,13 +18,13 @@ Either because you don't want to overload your raspberry pi or because your QA e
|
|||||||
- Docker Swarm
|
- Docker Swarm
|
||||||
- Kubernetes
|
- Kubernetes
|
||||||
- [Supports multiple reverse proxies](https://sablierapp.dev/#/plugins/overview)
|
- [Supports multiple reverse proxies](https://sablierapp.dev/#/plugins/overview)
|
||||||
- Apache APISIX
|
- [Apache APISIX](https://github.com/sablierapp/sablier-proxywasm-plugin)
|
||||||
- Caddy
|
- [Caddy](https://github.com/sablierapp/sablier-caddy-plugin)
|
||||||
- Envoy
|
- [Envoy](https://github.com/sablierapp/sablier-proxywasm-plugin)
|
||||||
- Istio
|
- [Istio](https://github.com/sablierapp/sablier-proxywasm-plugin)
|
||||||
- Nginx (NJS Module)
|
- Nginx (NJS Module)
|
||||||
- Nginx (WASM Module)
|
- [Nginx (WASM Module)](https://github.com/sablierapp/sablier-proxywasm-plugin)
|
||||||
- Traefik
|
- [Traefik](https://github.com/sablierapp/sablier-proxywasm-plugin)
|
||||||
- Scale up your workload automatically upon the first request
|
- Scale up your workload automatically upon the first request
|
||||||
- [with a themable waiting page](https://sablierapp.dev/#/themes)
|
- [with a themable waiting page](https://sablierapp.dev/#/themes)
|
||||||
- [with a hanging request (hang until service is up)](https://sablierapp.dev/#/strategies?id=blocking-strategy)
|
- [with a hanging request (hang until service is up)](https://sablierapp.dev/#/strategies?id=blocking-strategy)
|
||||||
@@ -32,3 +33,9 @@ Either because you don't want to overload your raspberry pi or because your QA e
|
|||||||
## 📝 Documentation
|
## 📝 Documentation
|
||||||
|
|
||||||
[See the documentation here](https://sablierapp.dev)
|
[See the documentation here](https://sablierapp.dev)
|
||||||
|
|
||||||
|
## Community
|
||||||
|
|
||||||
|
Join our Discord server to discuss and get support!
|
||||||
|
|
||||||
|
[](https://discord.gg/WXYp59KeK9)
|
||||||
26
SUPPORT.md
Normal file
26
SUPPORT.md
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
# Support
|
||||||
|
|
||||||
|
Thank you for using this project! If you need help or want to report an issue, here’s how you can get support:
|
||||||
|
|
||||||
|
## Submitting Issues
|
||||||
|
|
||||||
|
If you encounter a bug or have a feature request, please submit an issue on GitHub:
|
||||||
|
|
||||||
|
1. Go to the [GitHub Issues page](https://github.com/sablierapp/sablier/issues).
|
||||||
|
2. Click on "New Issue."
|
||||||
|
3. Provide a clear and detailed description of the problem or request.
|
||||||
|
4. Include any relevant information, such as steps to reproduce, screenshots, or logs.
|
||||||
|
|
||||||
|
We’ll review your issue as soon as possible!
|
||||||
|
|
||||||
|
## Discussions
|
||||||
|
|
||||||
|
For general questions, ideas, or feedback, join the conversation in our [GitHub Discussions](https://github.com/sablierapp/discussions).
|
||||||
|
|
||||||
|
## Join Our Discord
|
||||||
|
|
||||||
|
For real-time support and community interaction, join our Discord server:
|
||||||
|
|
||||||
|
[](https://discord.gg/WXYp59KeK9)
|
||||||
|
|
||||||
|
We’re here to help and look forward to hearing from you!
|
||||||
@@ -1,12 +1,17 @@
|
|||||||
|
> [!IMPORTANT]
|
||||||
|
> This plugin now has its own reepository: https://github.com/sablierapp/sablier-caddy-plugin
|
||||||
|
>
|
||||||
|
> This plugin will no longer receive updates.
|
||||||
|
|
||||||
# Caddy Sablier Plugin
|
# Caddy Sablier Plugin
|
||||||
|
|
||||||
- [Caddy Sablier Plugin](#caddy-sablier-plugin)
|
- [Caddy Sablier Plugin](#caddy-sablier-plugin)
|
||||||
- [Build the custom Caddy image with Sablier middleware in it](#build-the-custom-caddy-image-with-sablier-middleware-in-it)
|
- [Build the custom Caddy image with Sablier middleware in it](#build-the-custom-caddy-image-with-sablier-middleware-in-it)
|
||||||
- [By using the provided Dockerfile](#by-using-the-provided-dockerfile)
|
- [By using the provided Dockerfile](#by-using-the-provided-dockerfile)
|
||||||
- [By updating your Caddy Dockerfile](#by-updating-your-caddy-dockerfile)
|
- [By updating your Caddy Dockerfile](#by-updating-your-caddy-dockerfile)
|
||||||
- [Configuration](#configuration)
|
- [Configuration](#configuration)
|
||||||
- [Exemple with a minimal configuration](#exemple-with-a-minimal-configuration)
|
- [Exemple with a minimal configuration](#exemple-with-a-minimal-configuration)
|
||||||
- [Running end to end tests](#running-end-to-end-tests)
|
- [Running end-to-end tests](#running-end-to-end-tests)
|
||||||
|
|
||||||
## Build the custom Caddy image with Sablier middleware in it
|
## Build the custom Caddy image with Sablier middleware in it
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,8 @@
|
|||||||
|
> [!IMPORTANT]
|
||||||
|
> This plugin now has its own reepository: https://github.com/sablierapp/sablier-proxywasm-plugin
|
||||||
|
>
|
||||||
|
> This plugin will no longer receive updates.
|
||||||
|
|
||||||
# Proxy Wasm Sablier Plugin
|
# Proxy Wasm Sablier Plugin
|
||||||
|
|
||||||
See more at
|
See more at
|
||||||
|
|||||||
@@ -1,3 +1,9 @@
|
|||||||
|
> [!IMPORTANT]
|
||||||
|
> This plugin now has its own reepository: https://github.com/sablierapp/sablier-traefik-plugin
|
||||||
|
>
|
||||||
|
> This plugin will no longer receive updates.
|
||||||
|
|
||||||
|
|
||||||
# Traefik Sablier Plugin
|
# Traefik Sablier Plugin
|
||||||
|
|
||||||
- [Traefik Sablier Plugin](#traefik-sablier-plugin)
|
- [Traefik Sablier Plugin](#traefik-sablier-plugin)
|
||||||
|
|||||||
Reference in New Issue
Block a user