aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile31
1 files changed, 31 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 00000000..450e7888
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,31 @@
+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