Skip to content

Commit 91239cb

Browse files
authored
Add free software licence (AGPL3) (#9)
* Add licence file * Add copyright notices to files * Fix double-space * Update copyright headers * Add the
1 parent 3d1f029 commit 91239cb

File tree

14 files changed

+855
-0
lines changed

14 files changed

+855
-0
lines changed

.dockerignore

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
# Copyright 2025 NV Access Limited
2+
#
3+
# This file is part of the NVDA Remote Access Relay Server.
4+
#
5+
# NVDA Remote Access Relay Server is free software: you can redistribute it and/or modify it under the terms
6+
# of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of
7+
# the License, or (at your option) any later version.
8+
#
9+
# NVDA Remote Access Relay Server is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
10+
# without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero
11+
# General Public License for more details.
12+
#
13+
# You should have received a copy of the GNU Affero General Public License along with NVDA Remote Access Relay
14+
# Server. If not, see <https://www.gnu.org/licenses/>.
15+
116
# Git
217
.git
318
.gitignore

.editorconfig

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
# Copyright 2025 NV Access Limited
2+
#
3+
# This file is part of the NVDA Remote Access Relay Server.
4+
#
5+
# NVDA Remote Access Relay Server is free software: you can redistribute it and/or modify it under the terms
6+
# of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of
7+
# the License, or (at your option) any later version.
8+
#
9+
# NVDA Remote Access Relay Server is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
10+
# without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero
11+
# General Public License for more details.
12+
#
13+
# You should have received a copy of the GNU Affero General Public License along with NVDA Remote Access Relay
14+
# Server. If not, see <https://www.gnu.org/licenses/>.
15+
116
root = true
217

318
[*]

.github/actions/setup-environment/action.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
# Copyright 2025 NV Access Limited
2+
#
3+
# This file is part of the NVDA Remote Access Relay Server.
4+
#
5+
# NVDA Remote Access Relay Server is free software: you can redistribute it and/or modify it under the terms
6+
# of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of
7+
# the License, or (at your option) any later version.
8+
#
9+
# NVDA Remote Access Relay Server is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
10+
# without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero
11+
# General Public License for more details.
12+
#
13+
# You should have received a copy of the GNU Affero General Public License along with NVDA Remote Access Relay
14+
# Server. If not, see <https://www.gnu.org/licenses/>.
15+
116
name: 'Setup CI Environment'
217
description: 'Setup the environment in which CI scripts for the NVDA Remote Access server can be run'
318

.github/workflows/coverage.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
# Copyright 2025 NV Access Limited
2+
#
3+
# This file is part of the NVDA Remote Access Relay Server.
4+
#
5+
# NVDA Remote Access Relay Server is free software: you can redistribute it and/or modify it under the terms
6+
# of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of
7+
# the License, or (at your option) any later version.
8+
#
9+
# NVDA Remote Access Relay Server is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
10+
# without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero
11+
# General Public License for more details.
12+
#
13+
# You should have received a copy of the GNU Affero General Public License along with NVDA Remote Access Relay
14+
# Server. If not, see <https://www.gnu.org/licenses/>.
15+
116
name: Run automated tests
217

318
on: push

.github/workflows/pyright.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
# Copyright 2025 NV Access Limited
2+
#
3+
# This file is part of the NVDA Remote Access Relay Server.
4+
#
5+
# NVDA Remote Access Relay Server is free software: you can redistribute it and/or modify it under the terms
6+
# of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of
7+
# the License, or (at your option) any later version.
8+
#
9+
# NVDA Remote Access Relay Server is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
10+
# without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero
11+
# General Public License for more details.
12+
#
13+
# You should have received a copy of the GNU Affero General Public License along with NVDA Remote Access Relay
14+
# Server. If not, see <https://www.gnu.org/licenses/>.
15+
116
name: Check types with Pyright
217

318
on:

.gitignore

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
# Copyright 2025 NV Access Limited
2+
#
3+
# This file is part of the NVDA Remote Access Relay Server.
4+
#
5+
# NVDA Remote Access Relay Server is free software: you can redistribute it and/or modify it under the terms
6+
# of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of
7+
# the License, or (at your option) any later version.
8+
#
9+
# NVDA Remote Access Relay Server is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
10+
# without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero
11+
# General Public License for more details.
12+
#
13+
# You should have received a copy of the GNU Affero General Public License along with NVDA Remote Access Relay
14+
# Server. If not, see <https://www.gnu.org/licenses/>.
15+
116
.venv/
217
# Temporary unit testing artefacts
318
_trial_temp/

.pre-commit-config.yaml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
# Copyright 2025 NV Access Limited
2+
#
3+
# This file is part of NVDA Remote Access Relay Server.
4+
#
5+
# NVDA Remote Access Relay Server is free software: you can redistribute it and/or modify it under the terms
6+
# of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of
7+
# the License, or (at your option) any later version.
8+
#
9+
# NVDA Remote Access Relay Server is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
10+
# without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero
11+
# General Public License for more details.
12+
#
13+
# You should have received a copy of the GNU Affero General Public License along with NVDA Remote Access Relay
14+
# Server. If not, see <https://www.gnu.org/licenses/>.
15+
116
# Pre-commit configuration
217
# See https://pre-commit.com for more information
318
# See https://pre-commit.com/hooks.html for more hooks

0 commit comments

Comments
 (0)