We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d19e0ac commit cb478d0Copy full SHA for cb478d0
readme.md
@@ -276,7 +276,8 @@ docker-compose exec web python manage.py createsuperuser
276
# get the token from the superuser creation
277
docker-compose exec web python manage.py shell
278
from accounts.models import CustomUser
279
-user = CustomUser.objects.first().token # save this token somewhere
+user = CustomUser.objects.first().token
280
+print(user) # save this token somewhere (use it for authorization)
281
```
282
283
4. Application will be running at http://localhost:8001 and the swagger documentation at http://localhost:8001/v1/docs
0 commit comments