aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorBonfaceKilz2021-03-17 11:51:05 +0300
committerBonfaceKilz2021-03-17 11:51:05 +0300
commitddd1fa8c5113bd36e8f87986d35038f7a35841bc (patch)
treeaa7473ef72b82ad13d8e133c34f918e6cdf4fe20 /README.md
parentbeb167e72c571a4080de6e571a7a20bda0976868 (diff)
downloadgenenetwork3-ddd1fa8c5113bd36e8f87986d35038f7a35841bc.tar.gz
README: Add extra note on deps
Diffstat (limited to 'README.md')
-rw-r--r--README.md12
1 files changed, 12 insertions, 0 deletions
diff --git a/README.md b/README.md
index 67ae5af..6652a11 100644
--- a/README.md
+++ b/README.md
@@ -61,3 +61,15 @@ To spin up the server:
```bash
env FLASK_DEBUG=1 FLASK_APP="main.py" flask run --port=8080
```
+
+
+#### A note on dependencies
+
+Make sure that the dependencies in the `requirements.txt` file match those in
+guix. To freeze dependencies:
+
+```bash
+# The -l flag ensures you don't include
+# python packages installed globally.
+pip freeze -l > requirements.txt
+```