From bcdf3b92d1350cb61f64d92bddcd43624bb1c3b6 Mon Sep 17 00:00:00 2001 From: "Brian D. Klahn" Date: Wed, 23 Oct 2024 15:36:08 -0400 Subject: [PATCH] Explicitly reference the script file. fix typo --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 8ad5972..9e94cee 100644 --- a/README.md +++ b/README.md @@ -12,12 +12,12 @@ micromamba activate app_env001 # Sue's age is 33. ``` -The example app script shows a way to provide parameters via a config file (E.g. app_script001_config.json). An example file is provided as a starter. +The [example app script](src/app_script001.py) shows a way to provide parameters via a config file (E.g. app_script001_config.json). An example file is provided as a starter. E.g. ```bash cp src/app_script001_config_example.json app_script001_config.json ``` -Those will be overridden by any explicit parameters passed in one the command line. +Those will be overridden by any explicit parameters passed in on the command line. To use this, just click "Use this template". Create new repository with a name relevant for your app(s). Then change file and app names as appropriate (E.g. [src/app_script001.py](src/app_script001.py) and in [apps.scif](apps.scif)).