You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: validator/schema/platformsh.application.json
+11-4Lines changed: 11 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -78,7 +78,8 @@
78
78
"title": "The type of mount that will provide the data.",
79
79
"enum": [
80
80
"local",
81
-
"service"
81
+
"service",
82
+
"tmp"
82
83
]
83
84
},
84
85
"source_path": {
@@ -367,7 +368,8 @@
367
368
"title": "The type of mount that will provide the data.",
368
369
"enum": [
369
370
"local",
370
-
"service"
371
+
"service",
372
+
"tmp"
371
373
]
372
374
},
373
375
"source_path": {
@@ -560,6 +562,10 @@
560
562
"start": {
561
563
"type": "string",
562
564
"title": "The command used to start the application. It will be restarted if it terminates. Do not use on PHP unless using a custom persistent process like React PHP."
565
+
},
566
+
"post_start": {
567
+
"type": "string",
568
+
"title": "A command executed after the application is started."
563
569
}
564
570
},
565
571
"required": [
@@ -774,7 +780,8 @@
774
780
"title": "The type of mount that will provide the data.",
Copy file name to clipboardExpand all lines: validator/schema/upsun.json
+17-4Lines changed: 17 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -76,8 +76,11 @@
76
76
"type": "string",
77
77
"title": "The type of mount that will provide the data.",
78
78
"enum": [
79
+
"instance",
80
+
"service",
79
81
"storage",
80
-
"service"
82
+
"temporary",
83
+
"tmp"
81
84
]
82
85
},
83
86
"source_path": {
@@ -361,8 +364,11 @@
361
364
"type": "string",
362
365
"title": "The type of mount that will provide the data.",
363
366
"enum": [
367
+
"instance",
368
+
"service",
364
369
"storage",
365
-
"service"
370
+
"temporary",
371
+
"tmp"
366
372
]
367
373
},
368
374
"source_path": {
@@ -764,8 +770,11 @@
764
770
"type": "string",
765
771
"title": "The type of mount that will provide the data.",
766
772
"enum": [
773
+
"instance",
774
+
"service",
767
775
"storage",
768
-
"service"
776
+
"temporary",
777
+
"tmp"
769
778
]
770
779
},
771
780
"source_path": {
@@ -849,6 +858,10 @@
849
858
"start": {
850
859
"type": "string",
851
860
"title": "The command used to start the application. It will be restarted if it terminates. Do not use on PHP unless using a custom persistent process like React PHP."
861
+
},
862
+
"post_start": {
863
+
"type": "string",
864
+
"title": "A command executed after the application is started."
0 commit comments