From 67a87e7476c3c4bd79d81daea4e0b1b7874f0e52 Mon Sep 17 00:00:00 2001 From: benvand Date: Wed, 19 Sep 2018 09:47:08 +0100 Subject: [PATCH] Add .cfignore file to stop cloudfoundry uploading unnecessary files (esp. developer venvs) The app breaks with venv uploaded. Exclude all except required files in line with https://github.com/alphagov/digitalmarketplace-docker-base/blob/master/.dockerignore --- .cfignore | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .cfignore diff --git a/.cfignore b/.cfignore new file mode 100644 index 0000000..b135d7e --- /dev/null +++ b/.cfignore @@ -0,0 +1,11 @@ +* + +# Required for setting up environment +!runtime.txt +!requirements.txt + +# App requirements +!app.py +!pipe-watchdog.py +!config.yaml +