#!/bin/bash

## Description: Install Drupal and enable the module
## Usage: install
## Example: "ddev install"

vendor/bin/drush site:install --yes
vendor/bin/drush pm:install oauth_client --yes
vendor/bin/drush config:set simple_oauth.settings public_key '/var/www/html/.ddev/traefik/certs/oauth-client.crt' --yes
vendor/bin/drush config:set simple_oauth.settings private_key '/var/www/html/.ddev/traefik/certs/oauth-client.key' --yes
