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: cabotage/server/user/forms.py
+8Lines changed: 8 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -362,6 +362,14 @@ class EditApplicationSettingsForm(FlaskForm):
362
362
(lambdax: xifxelseNone),
363
363
],
364
364
)
365
+
procfile_path=StringField(
366
+
"Procfile Path",
367
+
description="Custom path to Procfile (e.g. deploy/Procfile), falls back to Procfile.cabotage then Procfile",
368
+
filters=[
369
+
(lambdax: x.strip() if (xandisinstance(x, str)) elsex),
370
+
(lambdax: xifxelseNone),
371
+
],
372
+
)
365
373
branch_deploy_watch_paths=TextAreaField(
366
374
"Watch Paths",
367
375
description="Only deploy this app when files matching these patterns change. One .gitignore-style pattern per line (e.g. src/**, Dockerfile). Leave empty to always deploy.",
0 commit comments