16 lines
490 B
YAML
16 lines
490 B
YAML
|
---
|
||
|
# service_name is the name of the project on GitHub
|
||
|
service_name: codimd
|
||
|
|
||
|
# URL to clone
|
||
|
service_repo: https://github.com/hackmdio/codimd.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 }}"
|