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
| #!/bin/sh | |
| set -eu | |
| HOME=/home/ubuntu | |
| MYSQL_ROOT_USERNAME="${MYSQL_ROOT_USERNAME:-"root"}" | |
| MYSQL_ROOT_PASSWORD="${MYSQL_ROOT_PASSWORD:-"root_password"}" | |
| WORDPRESS_DATABASE_NAME="${WORDPRESS_DATABASE_NAME:-"wordpress"}" | |
| WORDPRESS_DB_USERNAME="${WORDPRESS_DB_USERNAME:-"wordpress_user"}" | |
| WORDPRESS_DB_PASSWORD="${WORDPRESS_DB_PASSWORD:-"wordpress_password"}" | |
| log() { |
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
| """ | |
| intended to be used with git bisect: | |
| git bisect start "5.10.1" "5.0.0" | |
| git bisect run python ../isort_check.py | |
| """ | |
| import subprocess | |
| import sys | |
| from pathlib import Path | |
| from tempfile import TemporaryDirectory |
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
| <!DOCTYPE HTML> | |
| <html> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>Pyramid</title> | |
| <style>body { padding: 0; margin: 0; }</style> | |
| </head> | |
| <body> |
OlderNewer