bundles/riot-web: add metadata to write config.json
This commit is contained in:
parent
589965b58b
commit
b4808d54e9
1 changed files with 19 additions and 8 deletions
|
@ -1,3 +1,5 @@
|
||||||
|
from json import dumps
|
||||||
|
|
||||||
riot_web_root = '/var/www/{}'.format(node.metadata['riot-web']['url'])
|
riot_web_root = '/var/www/{}'.format(node.metadata['riot-web']['url'])
|
||||||
|
|
||||||
directories = {
|
directories = {
|
||||||
|
@ -10,31 +12,40 @@ pkg_apt = {
|
||||||
|
|
||||||
git_deploy = {
|
git_deploy = {
|
||||||
riot_web_root: {
|
riot_web_root: {
|
||||||
'needs': [
|
'needs': {
|
||||||
'directory:' + riot_web_root,
|
'directory:' + riot_web_root,
|
||||||
],
|
},
|
||||||
'rev': 'master',
|
'rev': 'master',
|
||||||
'repo': 'https://github.com/vector-im/riot-web.git',
|
'repo': 'https://github.com/vector-im/riot-web.git',
|
||||||
'triggers': [
|
'triggers': {
|
||||||
'action:riot_yarn_install',
|
'action:riot_yarn_install',
|
||||||
'action:riot_yarn_build',
|
'action:riot_yarn_build',
|
||||||
],
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
files = {
|
||||||
|
riot_web_root + '/webapp/config.json': {
|
||||||
|
'content': dumps(node.metadata['riot-web']['config']),
|
||||||
|
'needs': {
|
||||||
|
'action:riot_yarn_build',
|
||||||
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
actions = {
|
actions = {
|
||||||
'riot_yarn_install': {
|
'riot_yarn_install': {
|
||||||
'command': 'cd ' + riot_web_root + ' && yarn install',
|
'command': 'cd ' + riot_web_root + ' && yarn install',
|
||||||
'needs': [
|
'needs': {
|
||||||
'pkg_apt:yarn',
|
'pkg_apt:yarn',
|
||||||
],
|
},
|
||||||
'triggered': True,
|
'triggered': True,
|
||||||
},
|
},
|
||||||
'riot_yarn_build': {
|
'riot_yarn_build': {
|
||||||
'command': 'cd ' + riot_web_root + ' && yarn build',
|
'command': 'cd ' + riot_web_root + ' && yarn build',
|
||||||
'needs': [
|
'needs': {
|
||||||
'action:riot_yarn_install',
|
'action:riot_yarn_install',
|
||||||
],
|
},
|
||||||
'triggered': True,
|
'triggered': True,
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue