diff options
-rw-r--r-- | issues/genenetwork/genenetwork2_configurations.gmi | 4 | ||||
-rw-r--r-- | issues/genenetwork/genenetwork3_configuration.gmi | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/issues/genenetwork/genenetwork2_configurations.gmi b/issues/genenetwork/genenetwork2_configurations.gmi index 65ad3ad..7d08db0 100644 --- a/issues/genenetwork/genenetwork2_configurations.gmi +++ b/issues/genenetwork/genenetwork2_configurations.gmi @@ -68,3 +68,7 @@ For `wqflask/run_gunicorn.py`, the route can remain as is, since this is an entr * Move application initialisation into an application factory function * Replace all uses of `wqflask.app` variable with `flask.current_app` or `create_app()` as necessary + +### Non-Executable Configuration Files + +Eschew executable formats (*.py) for configuration files and prefer non-executable formats e.g. *.cfg, *.json, *.conf etc diff --git a/issues/genenetwork/genenetwork3_configuration.gmi b/issues/genenetwork/genenetwork3_configuration.gmi index 412928a..fcab572 100644 --- a/issues/genenetwork/genenetwork3_configuration.gmi +++ b/issues/genenetwork/genenetwork3_configuration.gmi @@ -11,3 +11,5 @@ ## Description The configuration file should only ever contain settings, and no code. Remove all code from the default settings file. + +Eschew executable formats (*.py) for configuration files and prefer non-executable formats e.g. *.cfg, *.json, *.conf etc |