aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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
+```