From 65808d748c905ebfbf057c0c608c0b818fb8fc23 Mon Sep 17 00:00:00 2001 From: Henrique Dias Date: Sun, 29 Jun 2025 09:14:21 +0200 Subject: [PATCH] docs: just include license --- CONTRIBUTING.md | 2 +- Makefile | 2 ++ www/.gitignore | 1 + 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index f442f9dd..1cfc8a92 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,6 +1,6 @@ # Contributing -If you're interested in contributing to this project, this is the best place to start. Before contributing to this project, please take a bit of time to read our [Code of Conduct](code-of-conduct.md). Also, note that this project is open-source and licensed under [Apache License 2.0](https://github.com/filebrowser/filebrowser/blob/master/LICENSE). +If you're interested in contributing to this project, this is the best place to start. Before contributing to this project, please take a bit of time to read our [Code of Conduct](code-of-conduct.md). Also, note that this project is open-source and licensed under [Apache License 2.0](LICENSE). ## Project Structure diff --git a/Makefile b/Makefile index 7b6a341a..35c813c0 100644 --- a/Makefile +++ b/Makefile @@ -58,6 +58,7 @@ site: ## Build site @rm -rf www/public docker build -f www/Dockerfile --progress=plain -t filebrowser.site www docker run --rm -v $(CURDIR)/www:/docs \ + -v $(CURDIR)/LICENSE:/docs/docs/LICENSE \ -v $(CURDIR)/SECURITY.md:/docs/docs/security.md \ -v $(CURDIR)/CHANGELOG.md:/docs/docs/changelog.md \ -v $(CURDIR)/CODE-OF-CONDUCT.md:/docs/docs/code-of-conduct.md \ @@ -69,6 +70,7 @@ site-serve: ## Serve site for development docker build -f www/Dockerfile --progress=plain -t filebrowser.site www docker run --rm -it -p 8000:8000 \ -v $(CURDIR)/www:/docs \ + -v $(CURDIR)/LICENSE:/docs/docs/LICENSE \ -v $(CURDIR)/SECURITY.md:/docs/docs/security.md \ -v $(CURDIR)/CHANGELOG.md:/docs/docs/changelog.md \ -v $(CURDIR)/CODE-OF-CONDUCT.md:/docs/docs/code-of-conduct.md \ diff --git a/www/.gitignore b/www/.gitignore index a7d69f33..b3e4463a 100644 --- a/www/.gitignore +++ b/www/.gitignore @@ -1,3 +1,4 @@ +docs/LICENSE docs/code-of-conduct.md docs/contributing.md docs/security.md