Moshe Dicker
Moshe Dicker
Add to readme that you must install `Ghostscript`. I got this message > OSError: Ghostscript is not installed. You can install it using the instructions here: https://camelot-py.readthedocs.io/en/master/user/install-deps.html
Zappa will upload to ARM if your system is running ARM. You could use `mlupin/docker-lambda:python3.9-build-arm` and use QEMU to emulate it on x86. Other than that there no other solution.
My mistake. You're 100% right. It always looks for x86. I'll shut up now 😳
I don't understand. How would it be possible to have have 3 different stages with the same URL ?
Please close this issue as this is not something the Zappa Team can solve. You're sadly limited to the binaries included on AWS Lambda.
Completely agree. The auto-detecting of needed packages is a feature no-one asked for. It would be developer friendly to have a `requirements.txt` and`requirements-dev.txt` file. However being that using Zappa within...
use a LayoutBuilder to get the max width and center the header in a sized box
Oh yeah!, stuff is happening!
I think his point is that there is no way to easily get the original value of the mappings E.G ```dart static const Map _fromWire = const { 'lakewood': 'lakewood',...
It's possible using this: ```dart extension CommunityEnumExt on CommunityEnum { String get value { return (CommunityEnum.serializer as PrimitiveSerializer) .serialize(serializers, this) as String; } } ```