diff --git a/README.md b/README.md index d9bcf2c..6401b67 100644 --- a/README.md +++ b/README.md @@ -9,8 +9,14 @@ ## Install -`$ pip install channels_auth_token_middlewares` - +1. `$ pip install channels-auth-token-middlewares` +2. Add app name to `INSTALLED_APPS` +```python +INSTALLED_APPS = [ + ... + 'channels_auth_token_middlewares', +] +``` ## Tutorial [Explore](tutorial) diff --git a/tests/app/entrypoint.sh b/tests/app/entrypoint.sh index 34a619c..9e44da8 100755 --- a/tests/app/entrypoint.sh +++ b/tests/app/entrypoint.sh @@ -1,5 +1,9 @@ #!/bin/bash +# while true; do +# sleep 60 +# done + pip install -e /new_app/ python manage.py test