From 31e6fae7c371c9fdbcd396c4dc1e9fe198ca3d2e Mon Sep 17 00:00:00 2001 From: Nick Sweeting Date: Sun, 20 Dec 2020 03:16:02 +0200 Subject: [PATCH] add migrations to common dev tasks --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.md b/README.md index bddc78f1..29f23f74 100644 --- a/README.md +++ b/README.md @@ -489,6 +489,17 @@ You can also run all these in Docker. For more examples see the Github Actions C ``` (uses `pytest -s`) +#### Make migrations or enter a django shell + +```bash +cd archivebox/ +./manage.py makemigrations + +cd data/ +archivebox shell +``` +(uses `pytest -s`) + #### Build the docs, pip package, and docker image ```bash