Nasadenie Python aplikácie na AWS Lambda

Príklady kódu

0
0

Nasadenie Python aplikácie na AWS Lambda

# serverless.ymlservice: serverless-flask# These are the plugins you have installed to support WSGI and pip # requirementsplugins:  - serverless-python-requirements  - serverless-wsgicustom:  wsgi:    # This is the file name and the app name of the application     # Where file name is app.py and Flask app name is app    # ie. app = Flask(__name__)     app: app.app    packRequirements: false  pythonRequirements:    dockerizePip: non-linuxprovider:  name: aws  runtime: python3.6  stage: dev  region: us-east-1functions:  app:    handler: wsgi.handler    events:      - http: ANY /      - http: 'ANY {proxy+}'

Podobné stránky

Podobné stránky s príkladmi

V iných jazykoch

Táto stránka je v iných jazykoch

Русский
..................................................................................................................
English
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Балгарскі
..................................................................................................................
Íslensk
..................................................................................................................