This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| version: '3' | |
| services: | |
| mysql: | |
| image: mysql:8.0 | |
| container_name: mysql | |
| environment: | |
| MYSQL_ROOT_PASSWORD: root-password | |
| MYSQL_DATABASE: database | |
| MYSQL_USER: user |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| version: "3.9" | |
| services: | |
| db: | |
| image: mysql:5.7 | |
| volumes: | |
| - db_data:/var/lib/mysql | |
| restart: always | |
| environment: | |
| MYSQL_ROOT_PASSWORD: somewordpress |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| AWSTemplateFormatVersion: '2010-09-09' | |
| Transform: AWS::Serverless-2016-10-31 | |
| Description: > | |
| Redirecting naked (apex) domain to full domain example | |
| Parameters: | |
| DomainName: | |
| Description: Naked (apex) name of the domain | |
| Type: String | |
| Certificate: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| let isAlreadyFetchingAccessToken = false | |
| let subscribers = [] | |
| function onAccessTokenFetched(access_token) { | |
| subscribers = subscribers.filter(callback => callback(access_token)) | |
| } | |
| function addSubscriber(callback) { | |
| subscribers.push(callback) | |
| } |