From 290d5097de25c4e0c5bc1e189fb7bc96d8f78244 Mon Sep 17 00:00:00 2001 From: edumucelli Date: Fri, 12 Feb 2021 14:40:20 +0000 Subject: [PATCH] Fix createsuperuser command --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1232585..01bb973 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,7 @@ You can create a Django Admin user to get access to the Django admin dashboard w ```bash # Make sure you are in the root directory of this repository -docker-compose run --rm --entrypoint ".venv/bin/python src/manage.py createsuperuser" api +docker-compose run --rm --entrypoint "python src/manage.py createsuperuser" api ``` You can then access the admin dashboard at [http://localhost:8000/admin/](http://localhost:8000/admin/)