Skip to content

Latest commit

 

History

History
22 lines (18 loc) · 1.06 KB

deploy.md

File metadata and controls

22 lines (18 loc) · 1.06 KB

Deploy

Prerequistes (one time)

  • Install gcloud (instructions)
  • Intialize gcloud (instructions)
    • NOTE: During initialization you will be asked to choose a project. This will be the project Artcompiler IDE is deployed to.

Deploy (many times)

make deploy

How it works

The deploy Makefile target runs the gcloud builds submit command using the cloudbuild deploy config found here. This config runs 3 steps:

  1. Build a docker image using the Dockerfile
  2. Push the image to the Google Container Registry
  3. Deploy the image to Google Cloud Run (services)

Interesting links for Artcompiler IDE