diff --git a/Makefile b/Makefile index 4a35170..7300080 100644 --- a/Makefile +++ b/Makefile @@ -6,6 +6,9 @@ migrate: pipenv run python manage.py migrate recover-all: pipenv run python manage.py loaddata db-backup.all.json +bootstrap: + make install + pipenv run python manage.py collectstatic serve: pipenv run python manage.py runserver 0.0.0.0:8000 install: diff --git a/README.rst b/README.rst index 775c177..e7ca02b 100644 --- a/README.rst +++ b/README.rst @@ -29,7 +29,7 @@ Quick Start for Developers You need only three following lines to initialize your pinry:: - make install + make bootstrap make serve Now the development server has been running, enjoy : )