Puppet Class: role::graphql

Defined in:
puppet/modules/role/manifests/graphql.pp

Overview

Class: role::graphql

Configures GraphQL, a MediaWiki extension that exposes a GraphQL API endpoint for MediaWiki



4
5
6
7
8
9
10
11
12
13
14
# File 'puppet/modules/role/manifests/graphql.pp', line 4

class role::graphql {
    include ::npm

    mediawiki::extension { 'GraphQL':
        composer => true
    }

    npm::install { 'graphql':
        directory => '/vagrant/mediawiki/extensions/GraphQL'
    }
}