From 05c5065069b644d009631cb90e667babb24110bb Mon Sep 17 00:00:00 2001 From: Calum Pinder Date: Fri, 31 May 2024 07:38:37 +0100 Subject: [PATCH] Test if updates to subfolder readmes are ignored by workflow --- backend/README.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/backend/README.md b/backend/README.md index 9701bbd..faf1ca0 100644 --- a/backend/README.md +++ b/backend/README.md @@ -31,7 +31,7 @@ $ poetry install You'll also need to clone a new `.env` file from the `.env.template` to store local configuration options. This is a one-time operation on first setup: ```bash -$ cp .env.template .env # (first time only) +$ cp .env.template .env # (first time only - or when environment variables have been updated) ``` The `.env` file is used by flask to set environment variables when running `flask run`. This enables things like development mode (which also enables features like hot reloading when you make a file change). There's also a [SECRET_KEY](https://flask.palletsprojects.com/en/2.3.x/config/#SECRET_KEY) variable which is used to encrypt the flask session cookie. @@ -59,7 +59,6 @@ Press CTRL+C to quit If you now run [the frontend](../frontend/README.md) you should be able to communicate with the backend - ## Running Tests -Tests can be run with `poetry run pytest` \ No newline at end of file +Tests can be run with `poetry run pytest`