We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9802e5a + cb478d0 commit f48bb83Copy full SHA for f48bb83
1 file changed
readme.md
@@ -272,7 +272,8 @@ docker-compose exec web python manage.py createsuperuser
272
# get the token from the superuser creation
273
docker-compose exec web python manage.py shell
274
from accounts.models import CustomUser
275
-user = CustomUser.objects.first().token # save this token somewhere
+user = CustomUser.objects.first().token
276
+print(user) # save this token somewhere (use it for authorization)
277
```
278
279
4. Application will be running at http://localhost:8001 and the swagger documentation at http://localhost:8001/v1/docs
0 commit comments