aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile31
1 files changed, 0 insertions, 31 deletions
diff --git a/Makefile b/Makefile
deleted file mode 100644
index 450e7888..00000000
--- a/Makefile
+++ /dev/null
@@ -1,31 +0,0 @@
-SYNAPSE_IMAGE="matrixdotorg/synapse:v1.24.0"
-
-test: ## Run the tests
- @cd build/ && GTEST_COLOR=1 ctest --verbose
-
-synapse: ## Start a synapse instance on docker
- @mkdir -p data
- @chmod 0777 data
- @docker run -v `pwd`/data:/data --rm \
- -e SYNAPSE_SERVER_NAME=localhost -e SYNAPSE_REPORT_STATS=no ${SYNAPSE_IMAGE} generate
- @./.ci/adjust-config.sh
- @docker run -d \
- --name synapse \
- -p 443:8008 \
- -p 8448:8008 \
- -p 8008:8008 \
- -v `pwd`/data:/data ${SYNAPSE_IMAGE}
- @echo Waiting for synapse to start...
- @until curl -s -f -k https://localhost:443/_matrix/client/versions; do echo "Checking ..."; sleep 2; done
- @echo Register alice
- @docker exec synapse /bin/sh -c 'register_new_matrix_user --admin -u alice -p secret -c /data/homeserver.yaml https://localhost:8008'
- @echo Register bob
- @docker exec synapse /bin/sh -c 'register_new_matrix_user --admin -u bob -p secret -c /data/homeserver.yaml https://localhost:8008'
- @echo Register carl
- @docker exec synapse /bin/sh -c 'register_new_matrix_user --admin -u carl -p secret -c /data/homeserver.yaml https://localhost:8008'
-
-stop-synapse: ## Stop any running instance of synapse
- @rm -rf ./data/*
- @docker rm -f synapse 2>&1>/dev/null
-
-restart: stop-synapse synapse