From f21a6b577b053ffbbd01b5a7891639466e84bf35 Mon Sep 17 00:00:00 2001 From: Asim Aslam Date: Sun, 13 Feb 2022 18:40:11 +0000 Subject: [PATCH] Update app.proto --- app/proto/app.proto | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/proto/app.proto b/app/proto/app.proto index 14a0fdb..c3398c1 100644 --- a/app/proto/app.proto +++ b/app/proto/app.proto @@ -59,7 +59,7 @@ message ListResponse { repeated Service services = 1; } -// Run an app from a source repo. Specify region etc. +// Run an app from source message RunRequest { // name of the app string name = 1; @@ -71,7 +71,7 @@ message RunRequest { string region = 4; // port to run on int32 port = 5; - // associatede env vars to pass in + // associated env vars to pass in map env_vars = 6; }