This file will setup Wordpress, MySQL & PHPMyAdmin with a single command. Add the code below to a file called "docker-compose.yaml" and run the command
$ docker-compose up -d
# To Tear Down
$ docker-compose down --volumes
| const nodemailer = require('nodemailer'); | |
| const key = require('./key.json'); | |
| // Change this to one of your email addresses in the organisation | |
| const YOUR_EMAIL_ADDRESS = 'info@your_company.com'; | |
| // Change this to the receiver to the mail | |
| const SEND_TO = 'receiver@other_company.com' | |
| async function start() { |
| 'use strict'; | |
| const express = require('express'); | |
| const https = require('https'); | |
| const fs = require('fs'); | |
| const bodyParser = require('body-parser'); | |
| const context = require('aws-lambda-mock-context'); | |
| // lambda.js contains the lambda function for Alexa as in https://github.com/alexa/alexa-skills-kit-sdk-for-nodejs | |
| var lambda = require('./lambda'); |