1
0
Fork 0
mirror of synced 2024-05-17 02:43:16 +12:00

add migrations to common dev tasks

This commit is contained in:
Nick Sweeting 2020-12-20 03:16:02 +02:00
parent e412af50d1
commit 31e6fae7c3

View file

@ -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