Просмотр исходного кода

Setting up REUSE: add copyright statements to files on the root directory

flack.lock, flake.nix, and requirements.yml are taken care of with REUSE.toml

Signed-off-by: Suguru Hirahara <acioustick@noreply.codeberg.org>
pull/3859/head
Suguru Hirahara 1 год назад
Родитель
Сommit
1e2c1ede05
Не найден GPG ключ соответствующий данной подписи Идентификатор GPG ключа: E4F9743DAB4B7B75
14 измененных файлов: 62 добавлений и 0 удалений
  1. +4
    -0
      .editorconfig
  2. +4
    -0
      .envrc
  3. +4
    -0
      .gitattributes
  4. +4
    -0
      .gitignore
  5. +4
    -0
      .yamllint
  6. +6
    -0
      CHANGELOG.md
  7. +4
    -0
      Makefile
  8. +6
    -0
      README.md
  9. +4
    -0
      REUSE.toml
  10. +6
    -0
      YEAR-IN-REVIEW.md
  11. +4
    -0
      ansible.cfg
  12. +4
    -0
      jitsi_jvb.yml
  13. +4
    -0
      justfile
  14. +4
    -0
      setup.yml

+ 4
- 0
.editorconfig Просмотреть файл

@@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2024 MDAD Team and contributors
#
# SPDX-License-Identifier: AGPL-3.0-or-later

# This file is the top-most EditorConfig file
root = true



+ 4
- 0
.envrc Просмотреть файл

@@ -1 +1,5 @@
# SPDX-FileCopyrightText: 2024 MDAD Team and contributors
#
# SPDX-License-Identifier: AGPL-3.0-or-later

use flake

+ 4
- 0
.gitattributes Просмотреть файл

@@ -1 +1,5 @@
# SPDX-FileCopyrightText: 2024 MDAD Team and contributors
#
# SPDX-License-Identifier: AGPL-3.0-or-later

* text=auto eol=lf

+ 4
- 0
.gitignore Просмотреть файл

@@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2024 MDAD Team and contributors
#
# SPDX-License-Identifier: AGPL-3.0-or-later

/inventory
/roles/**/files/scratchpad
.DS_Store


+ 4
- 0
.yamllint Просмотреть файл

@@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2024 MDAD Team and contributors
#
# SPDX-License-Identifier: AGPL-3.0-or-later

---
extends: default



+ 6
- 0
CHANGELOG.md Просмотреть файл

@@ -1,3 +1,9 @@
<!--
SPDX-FileCopyrightText: 2024 MDAD Team and contributors

SPDX-License-Identifier: AGPL-3.0-or-later
-->

# 2024-11-26

## (Backward Compatibility Break) Synapse now defaults to enabling authenticated media


+ 4
- 0
Makefile Просмотреть файл

@@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2024 MDAD Team and contributors
#
# SPDX-License-Identifier: AGPL-3.0-or-later

.PHONY: roles lint

help: ## Show this help.


+ 6
- 0
README.md Просмотреть файл

@@ -1,3 +1,9 @@
<!--
SPDX-FileCopyrightText: 2024 MDAD Team and contributors

SPDX-License-Identifier: AGPL-3.0-or-later
-->

[![Support room on Matrix](https://img.shields.io/matrix/matrix-docker-ansible-deploy:devture.com.svg?label=%23matrix-docker-ansible-deploy%3Adevture.com&logo=matrix&style=for-the-badge&server_fqdn=matrix.devture.com)](https://matrix.to/#/#matrix-docker-ansible-deploy:devture.com) [![donate](https://liberapay.com/assets/widgets/donate.svg)](https://liberapay.com/s.pantaleev/donate)

# Matrix (An open network for secure, decentralized communication) server setup using Ansible and Docker


+ 4
- 0
REUSE.toml Просмотреть файл

@@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2024 MDAD Team and contributors
#
# SPDX-License-Identifier: AGPL-3.0-or-later

version = 1

# Computer-generated files


+ 6
- 0
YEAR-IN-REVIEW.md Просмотреть файл

@@ -1,3 +1,9 @@
<!--
SPDX-FileCopyrightText: 2024 MDAD Team and contributors

SPDX-License-Identifier: AGPL-3.0-or-later
-->

# 2023

2023 was a year filled with many changes for matrix-docker-ansible-deploy. In this post, we're looking backward at some of the major changes that happened this year, as well as taking a glimpse of what's ahead in 2024.


+ 4
- 0
ansible.cfg Просмотреть файл

@@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2024 MDAD Team and contributors
#
# SPDX-License-Identifier: AGPL-3.0-or-later

[defaults]
retry_files_enabled = False
stdout_callback = yaml


+ 4
- 0
jitsi_jvb.yml Просмотреть файл

@@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2024 MDAD Team and contributors
#
# SPDX-License-Identifier: AGPL-3.0-or-later

---
- name: "Set up additional Jitsi JVB servers"
hosts: "jitsi_jvb_servers"


+ 4
- 0
justfile Просмотреть файл

@@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2024 MDAD Team and contributors
#
# SPDX-License-Identifier: AGPL-3.0-or-later

# Shows help
default:
@just --list --justfile {{ justfile() }}


+ 4
- 0
setup.yml Просмотреть файл

@@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2024 MDAD Team and contributors
#
# SPDX-License-Identifier: AGPL-3.0-or-later

---
- name: "Set up a Matrix server"
hosts: "{{ target if target is defined else 'matrix_servers' }}"


Загрузка…
Отмена
Сохранить