From 1ac270412456b8f3b4c317df82b36ce5d8e1ebd1 Mon Sep 17 00:00:00 2001 From: Victor Westerlund Date: Fri, 27 Sep 2024 15:09:56 +0000 Subject: [PATCH] feat: add .txt-files and gitignore rules (#7) This PR adds some .txt files! And a rule that prevents robots.txt from being tracked, as that one should be added on a per-installation basis. Reviewed-on: https://codeberg.org/vlw/vlw.se/pulls/7 Co-authored-by: Victor Westerlund Co-committed-by: Victor Westerlund --- .gitignore | 5 +++++ public/humans.txt | 1 + public/security.txt | 4 ++++ 3 files changed, 10 insertions(+) create mode 100644 public/humans.txt create mode 100644 public/security.txt diff --git a/.gitignore b/.gitignore index 71b7a9a..f3abf1c 100755 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,8 @@ +# Public assets # +################# +public/robots.txt +public/.well-known + assets/js/modules/npm # Bootstrapping # diff --git a/public/humans.txt b/public/humans.txt new file mode 100644 index 0000000..3ae2b39 --- /dev/null +++ b/public/humans.txt @@ -0,0 +1 @@ +This website was designed, coded, and configured with love, and coffee... and love for coffee... by Victor Westerlund. \ No newline at end of file diff --git a/public/security.txt b/public/security.txt new file mode 100644 index 0000000..ce1a184 --- /dev/null +++ b/public/security.txt @@ -0,0 +1,4 @@ +# If you would like to report a security issue +# you may report it to me via email or via Matrix +Contact: https://vlw.se/contact +Encryption: https://keys.openpgp.org/vks/v1/by-fingerprint/DCE987311CB5D2A252F58951D0AD730E1057DFC6 \ No newline at end of file