فهرست منبع

add migrations to common dev tasks

Nick Sweeting 5 سال پیش
والد
کامیت
31e6fae7c3
1فایلهای تغییر یافته به همراه11 افزوده شده و 0 حذف شده
  1. 11 0
      README.md

+ 11 - 0
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