Skip to content

Commit

Permalink
Merge pull request #8 from AAROC/plugins
Browse files Browse the repository at this point in the history
Plugins
  • Loading branch information
brucellino authored Mar 27, 2018
2 parents 1d7da6b + a3e64d8 commit 94d6bd4
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 3 deletions.
1 change: 1 addition & 0 deletions meta/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,4 @@ galaxy_info:
- web
dependencies:
- mongrelion.docker
- jdauphant.nginx
1 change: 1 addition & 0 deletions molecule/openstack-unict/requirements.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
---
- mongrelion.docker
- jdauphant.nginx
2 changes: 1 addition & 1 deletion templates/containers/app.yml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ hooks:
- mkdir -p plugins
- git clone https://github.com/discourse/docker_manager.git
{% if discourse_plugins != [] %}
{% for plugins in discourse_plugins %}
{% for plugin in discourse_plugins %}
- git clone {{ plugin.url }}
{% endfor %}
{% endif %}
Expand Down
22 changes: 20 additions & 2 deletions vars/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,23 @@ discourse_sso_install_path: /var/www/discourseSSO
# get this from the app
discourse_secret_key: test_key

# add plugins here
discourse_plugins: []
# add plugins here.
# only the url is used in the template app.yml.j2.
# The other fields are to help you remember what they are and why you
# what them.
discourse_plugins:
- name: Discourse Data Explorer
description: Allows better querying of Discourse database
url: https://github.com/discourse/discourse-data-explorer.git
- name: "Discourse Solved ✔"
description: "Allows you to mark posts as solutions"
url: https://github.com/discourse/discourse-solved.git
- name: Slack plugin
description: "Discourse to slack plugin"
url: https://github.com/bernd/discourse-slack-plugin.git
- name: Checklist
description: "For when you need to render checklists"
url: https://github.com/cpradio/discourse-plugin-checklist
- name: Spreadsheet
description: "Import google docs spreadsheets to preview them."
url: https://github.com/tcreativo/plugin_discourse_spreadsheet.git

0 comments on commit 94d6bd4

Please sign in to comment.