Skip to content
This repository has been archived by the owner on May 25, 2018. It is now read-only.

Latest commit

 

History

History
46 lines (30 loc) · 939 Bytes

README.md

File metadata and controls

46 lines (30 loc) · 939 Bytes

Restyled QA

Harness for full-integration testing of Restyled.io.

Pre-requisites

Create a .env file with

  1. GITHUB_APP_KEY_BASE64 - RSA key for our Development GitHub App

    base64 < path/to/rsa | tr -d '\n'
  2. NGROK_AUTHTOKEN - token for our ngrok account

Usage

  1. Build release-candidate images from sibling directories

    (cd ../restyler && make image.build IMAGE_TAG=:rc)
    (cd ../restyled.io && make image.build LOCAL_IMAGE=restyled/restyled.io:rc)

    NOTE: The currently-released :latest tags of individual Restylers are always pulled and used. Therefore, do not use this Harness to test local changes within any given Restyler.

  2. Start a complete local instance of Restyled.io

    docker-compose up -d
  3. Run the QA test(s)

    # TODO
  4. Stop your local instance

    docker-compose down