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`.