James Broad
James Broad
> For those who are still looking for a clean way to enable `GeoDjango` with `Zappa`, here's how: > > 1. Pick a layer that matches your requirements and your...
@HaithamKhedrSalem When I run into issues with Lambda binaries, I tend to do some directory listing to debug what's available e.g `ls -la /opt/share/`. Is it possible to share your...
> @kulor Thanks for ur reply. I have question what do u mean by doing some directory listing. Where should I run this ls -la command? Here is a sample...
I worked around this issue by removing the GZip middleware: ```python # settings.py MIDDLEWARE = [ ... # 'django.middleware.gzip.GZipMiddleware', # Seems to have issues with Zappa ... ```
I got myself a working setup by using @valeriozhang's tip but took it further by scripting it into my CI (building an MVP without DB requirements, yet). To save other's...
To wade in on this as I was looking for scheduling in Up, I've been using Zappa for scheduling and they have a nice config and invocation pattern which makes...
@mathsmtnx what spits out your logs if you run `zappa tail dev --since 5m` (shortly after a failed deployment)?
@mathsmtnx I faced similar issues with MySQL as I don't think the lib is bundled in the image any longer. I reluctantly resorted to using pymysql. Switchover from `libmysqlclient` was...
Do you have any suggestions of how you'd decouple the `up build` from the underlying language without adding a lot of moving parts and complexity? To avoid aforementioned complexity I...
Yea, simply replacing `FROM golang:1.11` to `FROM lambci/lambci:latest` could be all that's needed and bonus that it's the same Lambda runtime versions.