I am using python flask and using below command to start flask app but how do i pass this to zappa for aws lambda deployment.
python abc.py config/config.py
I am using python flask and using below command to start flask app but how do i pass this to zappa for aws lambda deployment.
python abc.py config/config.py
Zappa supports remote config that you can create the configuration file and place it in an S3 bucket to which your Zappa application has access.
zappa_settings.json:
{
"dev": {
...
"remote_env": "s3://my-config-bucket/config.json",
},
...
}