Merge branch 'codimd_1_3' into 'master'
Update to CodiMD 1.3.0 See merge request aurore/ansible!14
This commit is contained in:
commit
a03092a5e0
3 changed files with 17 additions and 20 deletions
|
@ -1,7 +1,8 @@
|
|||
---
|
||||
# Build front-end bundle
|
||||
# This can take very long and requires > 2GB of RAM
|
||||
- name: Build front-end for CodiMD
|
||||
command: npm run build
|
||||
command: NODE_ENV="production" yarn run build
|
||||
args:
|
||||
chdir: /var/local/codimd/codimd
|
||||
become: true
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -6,19 +6,18 @@
|
|||
- 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
|
||||
command: bin/setup
|
||||
command: NODE_ENV="production" bin/setup
|
||||
args:
|
||||
chdir: /var/local/codimd/codimd
|
||||
become: true
|
||||
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue