From cb6eadfd87a9a3ba0c68e546cf0865184eab57fa Mon Sep 17 00:00:00 2001 From: Olzhas Arystanov Date: Sun, 14 Jul 2024 19:01:39 +0500 Subject: [PATCH] Update README --- README.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index d40166f..95e0327 100644 --- a/README.md +++ b/README.md @@ -35,9 +35,16 @@ pdm run manage.py wait_for_database --timeout 10 pdm run manage.py migrate ``` -Start the application: +Create a superuser to access the admin panel: ```sh +pdm run manage.py createsuperuser +``` + +## Starting the application + +```sh +cd app/src pdm run manage.py runserver ``` Your application should now be available at `http://localhost:8000`.