2019-02-07 13:37:11 +01:00
|
|
|
---
|
|
|
|
# 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:
|
2019-02-09 07:58:06 +01:00
|
|
|
repo: https://github.com/hackmdio/codimd.git
|
2019-02-07 13:37:11 +01:00
|
|
|
dest: /var/local/codimd/codimd
|
|
|
|
version: 1.2.1
|
|
|
|
become: yes
|
|
|
|
become_user: codimd
|
2019-02-09 08:45:16 +01:00
|
|
|
notify: Build front-end for CodiMD
|
2019-02-07 13:37:11 +01:00
|
|
|
|
|
|
|
# Setup dependencies and configs
|
|
|
|
- name: Install CodiMD depedencies
|
|
|
|
command: bin/setup
|
|
|
|
args:
|
|
|
|
chdir: /var/local/codimd/codimd
|
|
|
|
become: yes
|
|
|
|
become_user: codimd
|
|
|
|
|
|
|
|
# Connection to database
|
2019-02-09 08:07:10 +01:00
|
|
|
- name: Connect CodiMD to PostgreSQL db
|
2019-02-07 13:37:11 +01:00
|
|
|
template:
|
|
|
|
src: sequelizerc
|
|
|
|
dest: /var/local/codimd/codimd/.sequelizerc
|
|
|
|
owner: codimd
|
|
|
|
group: codimd
|
|
|
|
mode: 0600
|
|
|
|
|
2019-02-09 08:39:16 +01:00
|
|
|
# Update database
|
2019-02-09 08:07:10 +01:00
|
|
|
- name: Migrate the db to the latest schema
|
2019-02-07 13:37:11 +01:00
|
|
|
command: node_modules/.bin/sequelize db:migrate
|
|
|
|
args:
|
2019-02-09 08:07:10 +01:00
|
|
|
chdir: /var/local/codimd/codimd
|
2019-02-07 13:37:11 +01:00
|
|
|
become: yes
|
|
|
|
become_user: codimd
|
2019-02-09 08:07:10 +01:00
|
|
|
|