From 15e54ffa92b0f5f85eda848af49644dfcea34abb Mon Sep 17 00:00:00 2001 From: Fuhu Xia Date: Mon, 26 Feb 2024 12:37:56 -0500 Subject: [PATCH] push to cloud.gov --- manifest.yml | 15 +++++---------- requirements.txt | 4 ---- 2 files changed, 5 insertions(+), 14 deletions(-) delete mode 100644 requirements.txt diff --git a/manifest.yml b/manifest.yml index beef2d07..9e5c035b 100644 --- a/manifest.yml +++ b/manifest.yml @@ -1,15 +1,10 @@ --- # To apply this manifest: cf push --vars-file vars.yml applications: - - name: ((app_name)) + - name: datagov-harvesting-logic buildpacks: - python_buildpack - routes: - - route: ((app_name)).app.cloud.gov - health-check-type: http - health-check-http-endpoint: / - health-check-invocation-timeout: 60 - instances: 1 - disk_quota: 2G - memory: 200M - command: python3 main.py $PORT + no-route: true + instances: 0 + command: sleep infinity + health-check-type: process diff --git a/requirements.txt b/requirements.txt deleted file mode 100644 index e9e91229..00000000 --- a/requirements.txt +++ /dev/null @@ -1,4 +0,0 @@ -# poetry not supported by cloud.gov? -# use this file instead - -flask