Update to CodiMD 1.3.0

This commit is contained in:
Alexandre Iooss 2019-03-04 15:08:05 +01:00
parent ebadfb772e
commit 68d246bb24
3 changed files with 15 additions and 19 deletions

View file

@ -1,7 +1,7 @@
---
# Build front-end bundle
- name: Build front-end for CodiMD
command: npm run build
command: yarn run build
args:
chdir: /var/local/codimd/codimd
become: true

View file

@ -9,6 +9,11 @@
dest: /etc/apt/preferences.d/nodejs
mode: 0644
# TODO
# apt-transport-https
# curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
# echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
# Install CodiMD dependencies
- name: Install required packages
apt:
@ -20,4 +25,4 @@
- nodejs
- npm
- build-essential
- zlib1g-dev # uws module
- yarn

View file

@ -6,15 +6,14 @@
- include_tasks: 1_user_group.yml
# Download CodiMD
# TODO : temporally disabled until 1.3.0 is out (because of uws bug)
# - 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
# notify: Build front-end for CodiMD
- name: Clone CodiMD project
git:
repo: https://github.com/hackmdio/codimd.git
dest: /var/local/codimd/codimd
version: 1.3.0
become: true
become_user: codimd
notify: Build front-end for CodiMD
# Setup dependencies and configs
- name: Install CodiMD depedencies
@ -33,14 +32,6 @@
group: codimd
mode: 0600
# Update database
- name: Migrate the db to the latest schema
command: node_modules/.bin/sequelize db:migrate
args:
chdir: /var/local/codimd/codimd
become: true
become_user: codimd
# Configure
- name: Configure CodiMD
template: