summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorSean Molenaar <SMillerDev@users.noreply.github.com>2022-09-28 21:07:44 +0200
committerBenjamin Brahmer <info@b-brahmer.de>2022-10-10 16:03:19 +0200
commit50b78092dc50a1e45f4137f394b546e16878e6b0 (patch)
tree81988be8f9bb8a3ce7d38701120bf7f0c7419a73 /Makefile
parentefc2cc84a9f5ede5a23be44597551b13c62ebaa1 (diff)
feat: start servers from make
Co-authored-by: Sean Molenaar <SMillerDev@users.noreply.github.com> Signed-off-by: Benjamin Brahmer <info@b-brahmer.de>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 9 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 7e55a1bb3..08b9dc45e 100644
--- a/Makefile
+++ b/Makefile
@@ -222,4 +222,12 @@ test: php-test-dependencies
.PHONY: feed-test
feed-test:
- ./bin/tools/check_feeds.sh \ No newline at end of file
+ ./bin/tools/check_feeds.sh
+
+.PHONY: feed-server
+feed-server:
+ php -S 127.0.0.1:8090 -t $(CURDIR)/tests/test_helper/feeds
+
+.PHONY: nextcloud-server
+nextcloud-server:
+ php -S 127.0.0.1:8080 -t $(CURDIR)/../../. \ No newline at end of file