You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We're running a django-micro app serverless on AWS Lambda using Zappa 👍
Only things needed was to use "app.application" as app_function WSGI function and to not specify a django_settings module in zappa_config.json; and then apply the sys.path import fix from django_zappa.py.
It also runs fine without database by disabling all database related apps and functionality.
This is a pretty neat way to run lightweight services while keeping commonality with our existing full fat Django apps and dependencies!
FYI 😉
The text was updated successfully, but these errors were encountered:
We're running a django-micro app serverless on AWS Lambda using Zappa 👍
Only things needed was to use
"app.application"
asapp_function
WSGI function and to not specify adjango_settings
module in zappa_config.json; and then apply the sys.path import fix from django_zappa.py.It also runs fine without database by disabling all database related apps and functionality.
This is a pretty neat way to run lightweight services while keeping commonality with our existing full fat Django apps and dependencies!
FYI 😉
The text was updated successfully, but these errors were encountered: