21 lines
484 B
YAML
21 lines
484 B
YAML
|
---
|
||
|
# Install APT dependencies
|
||
|
- include_tasks: 0_apt_dependencies.yml
|
||
|
|
||
|
# Create CodiMD user and group
|
||
|
- include_tasks: 1_user_group.yml
|
||
|
|
||
|
# Download CodiMD
|
||
|
- name: Clone CodiMD project
|
||
|
git:
|
||
|
repo: "https://github.com/hackmdio/codimd.git"
|
||
|
dest: /var/local/codimd/codimd
|
||
|
version: "1.2.1"
|
||
|
become: true
|
||
|
become_user: codimd
|
||
|
|
||
|
# TODO Configurer et créer un service
|
||
|
# https://github.com/hackmdio/codimd#instructions
|
||
|
# https://github.com/hackmdio/codimd#configuration-files
|
||
|
|