Akshay Raj Gollahalli
Akshay Raj Gollahalli
I have the same problem. Have you tried debugging it by any chance?
The following works, I wouldn't recommend using it ```python class CustomAuthTokenManager(models.Manager): def create(self, user, name, expiry=knox_settings.TOKEN_TTL): token = crypto.create_token_string() salt = crypto.create_salt_string() digest = crypto.hash_token(token, salt) if expiry is not...
@yushinzm Have you look at https://github.com/angular/angularfire/blob/master/docs/firestore/querying-collections.md
@GavinNL Do you mind sharing your code on how you were able to set the SVG icons without using a qrc file?
@GavinNL I tried it, but I still get file not found. Creating a qrc file fixed it. See #28.
Pitching in one I just pushed to PyPi creates a CHANGELOG.md based on keep-a-changelog -> https://github.com/akshaybabloo/release-exporter
This is still happening in the version 1.8.8
Looks more like a binary file missing problem, maybe also opening a ticket at https://github.com/heroku/heroku-buildpack-python would help.
Which version of Python and Django are you using? Also can you paste in your `pip freeze` and try doing `django-admin startproject helloworld --template=https://github.com/heroku/heroku-django-template/archive/master.zip --name=Procfile --verbosity 3`
Something like ```python LOGGING = { 'version': 1, 'disable_existing_loggers': False, 'formatters': { 'verbose': { 'format': '%(levelname)s %(asctime)s %(module)s %(process)d %(thread)d: %(message)s' }, 'simple': { 'format': '%(asctime)s [%(levelname)s] %(name)s: %(message)s' },...