Simplify set-up using custom abra command

This commit is contained in:
3wc 2020-09-11 18:14:16 +02:00
parent cfbd809761
commit ad6a1c87dd
2 changed files with 4 additions and 1 deletions

View File

@ -12,7 +12,7 @@ image][synapse-docker].
4. `abra secret_generate coturn_shared_secret`
5. `abra deploy`
6. `abra service_run synapse` to open a shell
7. `register_new_matrix_user -c /data/homeserver.yaml http://localhost:8008`
7. `abra register_new_matrix_user`
[synapse-docker]: https://hub.docker.com/r/matrixdotorg/synapse
[abra]: https://git.autonomic.zone/autonomic-cooperative/abra

3
abra-commands.sh Normal file
View File

@ -0,0 +1,3 @@
sub_register_new_matrix_user() {
abra run synapse register_new_matrix_user -c /data/homeserver.yaml http://localhost:8008
}