diff options
| -rw-r--r-- | classification/.gitignore | 1 | ||||
| -rw-r--r-- | gitlab/.gitignore | 2 | ||||
| -rw-r--r-- | gitlab/shell.nix | 1 | ||||
| -rw-r--r-- | mailinglist/.gitignore | 2 | ||||
| -rw-r--r-- | mailinglist/shell.nix | 1 |
5 files changed, 7 insertions, 0 deletions
diff --git a/classification/.gitignore b/classification/.gitignore new file mode 100644 index 00000000..53752db2 --- /dev/null +++ b/classification/.gitignore @@ -0,0 +1 @@ +output diff --git a/gitlab/.gitignore b/gitlab/.gitignore new file mode 100644 index 00000000..2880421c --- /dev/null +++ b/gitlab/.gitignore @@ -0,0 +1,2 @@ +issues_toml +issues_text diff --git a/gitlab/shell.nix b/gitlab/shell.nix index 5669f4f4..4e41b4ff 100644 --- a/gitlab/shell.nix +++ b/gitlab/shell.nix @@ -3,5 +3,6 @@ with pkgs; mkShell { buildInputs = [ python312Packages.tomlkit + python312Packages.requests ]; } diff --git a/mailinglist/.gitignore b/mailinglist/.gitignore new file mode 100644 index 00000000..0d0ac50d --- /dev/null +++ b/mailinglist/.gitignore @@ -0,0 +1,2 @@ +output_launchpad +output_mailinglist diff --git a/mailinglist/shell.nix b/mailinglist/shell.nix index 67eae57e..fcca0cfd 100644 --- a/mailinglist/shell.nix +++ b/mailinglist/shell.nix @@ -4,5 +4,6 @@ mkShell { buildInputs = [ python312Packages.html5lib python312Packages.beautifulsoup4 + python312Packages.requests ]; } |