about summary refs log tree commit diff
path: root/README.org
diff options
context:
space:
mode:
Diffstat (limited to 'README.org')
-rw-r--r--README.org8
1 files changed, 4 insertions, 4 deletions
diff --git a/README.org b/README.org
index 6e9c78e..ca77653 100644
--- a/README.org
+++ b/README.org
@@ -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
@@ -208,7 +208,7 @@ flask run
 
 To run the linter over the code base, run:
 #+BEGIN_SRC shell
-  pylint setup.py tests quality_control qc_app r_qtl scripts
+  pylint setup.py tests quality_control uploader r_qtl scripts
 #+END_SRC
 
 To check for correct type usage in the application, run:
@@ -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