Skip to content

Commit

Permalink
Add docsify and json schemas for monitoring specs (#96)
Browse files Browse the repository at this point in the history
Co-authored-by: Walid Kayhal <[email protected]>
Co-authored-by: amtins <[email protected]>
Co-authored-by: André M. <[email protected]>
Co-authored-by: Samuel Défago <[email protected]>
Co-authored-by: Gaëtan Muller <[email protected]>
  • Loading branch information
6 people authored Sep 24, 2024
1 parent 9358586 commit 1cc3273
Show file tree
Hide file tree
Showing 26 changed files with 1,030 additions and 334 deletions.
7 changes: 4 additions & 3 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
indent_style=space
indent_size=4

[*.{md}]
indent_style = space
indent_size = 4
[*.md]
max_line_length = 120
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @MGaetan89 @StaehliJ @amtins @defagos @jboix @waliid
13 changes: 9 additions & 4 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
# Description
## Description

> Describe enhancements with sufficient details.
> Please provide a brief summary of the changes made. Include the specific guideline that is being
> addressed or added, and explain its significance.
# Changes made
> Please explain why this change was necessary. Was there a lack of clarity? Was the information
> outdated? Or is this a new addition to the guidelines?
> Please list the specific changes made in this pull request.
## Changes Made

> Please detail the modifications made. This could include areas such as changes in content,
> structure, or formatting.
22 changes: 22 additions & 0 deletions .github/workflows/github-page.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Github Page

on:
push:
branches:
- main

jobs:
github-page:
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Deploy GitHub Page 🚀
uses: JamesIves/github-pages-deploy-action@releases/v4
with:
branch: gh-pages
folder: public
force: false
clean-exclude: pr-preview/
25 changes: 25 additions & 0 deletions .github/workflows/preview.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Deploy PR previews

on:
pull_request:
types:
- opened
- reopened
- synchronize
- closed

concurrency: preview-${{ github.ref }}

jobs:
deploy-preview:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Deploy Preview 🚀
uses: rossjrw/pr-preview-action@v1
with:
source-dir: public
preview-branch: gh-pages
umbrella-dir: pr-preview
9 changes: 8 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,8 @@
.DS_Store
### Intellij ###
.idea

### VisualStudioCode ###
.vscode

# macOs
.DS_Store
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) SRG SSR

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
10 changes: 0 additions & 10 deletions README.md

This file was deleted.

Loading

0 comments on commit 1cc3273

Please sign in to comment.