Click here to download old versions of Chrome for Linux, Mac and Windows.
The download_url field of the desired section houses the URL to the download.
Alternatively, for not too old versions, you can get it directly here.
| #!/usr/bin/env bash | |
| # exit on error | |
| set -o errexit | |
| STORAGE_DIR=/opt/render/project/.render | |
| if [[ ! -d $STORAGE_DIR/chrome ]]; then | |
| echo "...Downloading Chrome" | |
| mkdir -p $STORAGE_DIR/chrome | |
| cd $STORAGE_DIR/chrome |
| CREATE TABLE "cards" ( | |
| "id" serial, | |
| "card_type" varchar(20), | |
| "card_fee" money, | |
| PRIMARY KEY ("id") | |
| ); | |
| CREATE TABLE "personalizations" ( | |
| "id" serial, | |
| "font" varchar(15), |
| version: "3" | |
| services: | |
| strapi: | |
| build: | |
| context: ./ | |
| container_name: strapi_cms | |
| env_file: .env | |
| restart: unless-stopped | |
| environment: |
| stages: | |
| - build | |
| - deploy | |
| variables: | |
| S3_BUCKET: "bucket" | |
| S3_ARCHIVE_PATH_PROD: "production/" | |
| build: | |
| image: docker:latest |
| #!/bin/bash | |
| echo "Updating system..." | |
| sudo apt update | |
| echo "Installing dependencies..." | |
| sudo apt install -y apt-transport-https ca-certificates curl software-properties-common | |
| echo "Downloading data..." | |
| sudo apt install -y curl |
| AWSTemplateFormatVersion: "2010-09-09" | |
| Description: "Template description" | |
| Parameters: | |
| AppEnvironment: | |
| Type: String | |
| Default: production | |
| EC2InstanceType: | |
| Type: String | |
| Default: a1.medium |
| # Cache node modules - speeds up future builds | |
| cache: | |
| paths: | |
| - node_modules | |
| stages: | |
| - build | |
| - run | |
| variables: |
| <?php | |
| /** | |
| * This little class records how long it takes each WordPress action or filter | |
| * to execute which gives a good indicator of what hooks are being slow. | |
| * You can then debug those hooks to see what hooked functions are causing problems. | |
| * | |
| * This class does NOT time the core WordPress code that is being run between hooks. | |
| * You could use similar code to this that doesn't have an end processor to do that. | |
| * |