diff options
author | Frederick Muriuki Muriithi | 2024-07-25 15:20:36 -0500 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2024-07-26 16:45:31 -0500 |
commit | 7ec7146f64cb6634b84f295c5a15804d7f77451f (patch) | |
tree | 652c74141b3efd38386e5b517d3989edf1cba07b /README.org | |
parent | 9d9421c6fb28c3185a81adebbbaef4b42c18746f (diff) | |
download | gn-uploader-7ec7146f64cb6634b84f295c5a15804d7f77451f.tar.gz |
Rename configuration variable
QCAPP_CONF --> UPLOADER_CONF
Diffstat (limited to 'README.org')
-rw-r--r-- | README.org | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -197,7 +197,7 @@ few environment variables #+BEGIN_SRC shell export FLASK_APP=wsgi.py export FLASK_ENV=development -export QCAPP_INSTANCE_PATH=/path/to/directory/with/config.py +export UPLOADER_CONF=/path/to/directory/with/uploader/configuration.py #+END_SRC then you can run the application with #+BEGIN_SRC shell @@ -218,13 +218,13 @@ To check for correct type usage in the application, run: Run unit tests with: #+BEGIN_SRC shell - $ export QCAPP_CONF=</path/to/configuration/file.py> + $ export UPLOADER_CONF=</path/to/configuration/file.py> $ pytest -m unit_test #+END_SRC To run ALL tests (not just unit tests): #+BEGIN_SRC shell - $ export QCAPP_CONF=</path/to/configuration/file.py> + $ export UPLOADER_CONF=</path/to/configuration/file.py> $ pytest #+END_SRC |