Results 4 comments of Josef Norlin

Look at the bottom here of this thread, paulfries 24 days ago: https://discourse.serverless-stack.com/t/add-a-create-note-api/125 I had the same issue. Seems like dotenv demands a .env file and if you follow the...

> This reproduces on 0.69.5-1. Also, we need to make sure that the fix for #349 does not regress Still present on 0.69.6-2 even with this PR: https://github.com/react-native-tvos/react-native-tvos/pull/396

@baxeico How did you call your render_variations function? I've tried this to no avail: img = StdImageField(upload_to=UploadToUUID(path='posters'), blank=True, render_variations ,variations={ 'app': (179, 260), 'thumbnail': (207, 299), 'thumbnail_2x': (413, 598), 'thumbnail_4x':...

Solved it. Put your function in the models.py and called it with **render_variations=resize_and_autorotate** in the img declaration img = StdImageField(upload_to=UploadToUUID(path='posters'), blank=True, render_variations=resize_and_autorotate ,variations={ 'app': (179, 260), 'thumbnail': (207, 299), 'thumbnail_2x':...