How to install Discourse.PRO plugins

After you have payed for plugins you will be granted access to our private Git repositories at code.dmitry-fedyuk.com.
You will have login and password.

Git clone command looks like:

git clone https://login:password@code.dmitry-fedyuk.com/discourse/plugin-name.git

Place your login, password and plugin-name here.
For example:

git clone https://john:123456@code.dmitry-fedyuk.com/discourse/df-table.git

You will be always granted access to df-core plugin which is required by other plugins and must be installed.

The plugins are installed in the standard Discourse way:

Open your app.yml
Find the section

hooks:
  after_code:
    - exec:
        cd: $home/plugins
        cmd:
            - mkdir -p plugins

Place your git clone command after - mkdir -p plugins, for example:

hooks:
  after_code:
    - exec:
        cd: $home/plugins
        cmd:
            - mkdir -p plugins
            - git clone https://john:123456@code.dmitry-fedyuk.com/discourse/df-core.git
            - git clone https://john:123456@code.dmitry-fedyuk.com/discourse/df-table.git

Please make note that df-core plugin must be installed.

Then rebuild the container:

./launcher rebuild app

I went to send you a reply but it said I have 2 post minimum.

I also can’t send you a PM.