@catladder/pipeline 1.80.1 → 1.80.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -13,6 +13,12 @@ const config: Config = {
13
13
  type: "google-cloudrun",
14
14
  projectId: "google-project-id",
15
15
  region: "europe-west6",
16
+ // optional, set min and max instances
17
+ // defaults to 0-100
18
+ service: {
19
+ minInstances: 0,
20
+ maxInstances: 5,
21
+ },
16
22
  cloudSql: {
17
23
  type: "unmanaged",
18
24
  instanceConnectionName: "projectId:region:instancename",
@@ -31,6 +37,22 @@ const config: Config = {
31
37
  },
32
38
  },
33
39
  },
40
+ www: {
41
+ dir: "www",
42
+ build: {
43
+ type: "node",
44
+ },
45
+ deploy: {
46
+ type: "google-cloudrun",
47
+ projectId: "google-project-id",
48
+ region: "europe-west6",
49
+ },
50
+ vars: {
51
+ public: {
52
+ API_URL: "${api:ROOT_URL}",
53
+ },
54
+ },
55
+ },
34
56
  },
35
57
  };
36
58
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@catladder/pipeline",
3
- "version": "1.80.1",
3
+ "version": "1.80.3",
4
4
  "scripts": {
5
5
  "build:tsc": "yarn tsc",
6
6
  "build": "yarn build:compile && yarn build:inline-variables && yarn build:bundle",