diff --git a/README.md b/README.md index c0aeac484f153c148ce4841f9c0a45a70758f6ae..2cc57df42867b34d63568edc524142166cc98efd 100644 --- a/README.md +++ b/README.md @@ -69,6 +69,16 @@ admin.site.register(Todo) ### 7- You then need to have your WSGI server pointing on myldpserver/myldpserver/wsgi.py +### 8- You will probably need to create a super user +``` +./manage.py createsuperuser +``` + +### 9- If you have no CSS on the admin screens : +``` +./manage.py collectstatic +``` + ## Execution To start the server, `cd` to the root of your Django project and run : ```