0

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 
AniketGole
  • 889
  • 2
  • 11
  • 22

1 Answers1

0

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",
    },
    ...
} 
Manoj
  • 276
  • 2
  • 4
  • my app running with this python `abc.py config/config.py` command what do i change in zappa which will run this command to start my flask app – AniketGole Jan 13 '20 at 12:02