16 lines
562 B
YAML
16 lines
562 B
YAML
|
---
|
||
|
# appservice_name is the name of the project on GitHub
|
||
|
appservice_name: matrix-appservice-discord
|
||
|
|
||
|
# URL to clone
|
||
|
appservice_repo: https://github.com/Half-Shot/matrix-appservice-discord.git
|
||
|
|
||
|
# name of the service user
|
||
|
# It means that you will have to `sudo -u THISUSER zsh` to debug
|
||
|
appservice_user: "{{ appservice_name }}"
|
||
|
appservice_homedir: "/var/local/{{ appservice_name }}"
|
||
|
|
||
|
# appservice_path is where the project is cloned
|
||
|
# It can't be the home directory because of user hidden files.
|
||
|
appservice_path: "{{ appservice_homedir }}/{{ appservice_name }}"
|