diff --git a/roles/taiga/files/conf.json b/roles/taiga/files/conf.json new file mode 100644 index 0000000000..0e80a2a170 --- /dev/null +++ b/roles/taiga/files/conf.json @@ -0,0 +1,12 @@ +{ + "api": "http://taiga.cloud.fedoraproject.org/api/v1/", + "eventsUrl": "ws://taiga.cloud.fedoraproject.org/events", + "debug": true, + "publicRegisterEnabled": true, + "feedbackEnabled": true, + "privacyPolicyUrl": null, + "termsOfServiceUrl": null, + "maxUploadFileSize": null, + "contribPlugins": ["js/fas_openid_auth.js"], + "debugInfo": false +} diff --git a/roles/taiga/tasks/main.yml b/roles/taiga/tasks/main.yml index 8bfaf15b37..780821001c 100644 --- a/roles/taiga/tasks/main.yml +++ b/roles/taiga/tasks/main.yml @@ -129,3 +129,19 @@ mode=0640 owner=taiga group=taiga notify: restart taiga-back tags: taiga +### DONE with taiga-back + +### Getting close to the end.. setup taiga-front-dist from git +- command: sudo -u taiga git clone https://github.com/taigaio/taiga-front-dist.git + chdir=/home/taiga/ + creates=/home/taiga/taiga-front-dist + tags: taiga + +- command: sudo -u taiga git checkout 1.6.0 + chdir=/home/taiga/taiga-front-dist + tags: taiga + +- copy: conf.json dest=/home/taiga/taiga-front-dist/dist/js/conf.json + mode=0644 owner=taiga group=taiga + tags: taiga +### DONE with taiga-front