15 lines
531 B
YAML
15 lines
531 B
YAML
---
|
|
# service_name is the name of the project on GitHub
|
|
service_name: matrix-appservice-webhooks
|
|
|
|
# URL to clone
|
|
service_repo: https://github.com/turt2live/matrix-appservice-webhooks.git
|
|
|
|
# name of the service user
|
|
# It means that you will have to `sudo -u THISUSER zsh` to debug
|
|
service_user: "{{ service_name }}"
|
|
service_homedir: "/var/local/{{ service_name }}"
|
|
|
|
# service_path is where the project is cloned
|
|
# It can't be the home directory because of user hidden files.
|
|
service_path: "{{ service_homedir }}/{{ service_name }}"
|